/* ══════════════════════════════════════
   MOTOSERVIS FREDI NIKU — BMW-inspired
   ══════════════════════════════════════ */

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

:root {
  --black:   #000000;
  --dark:    #0a0a0a;
  --dark2:   #111111;
  --dark3:   #1a1a1a;
  --mid:     #222222;
  --border:  #2a2a2a;
  --blue:    #1c69d4;
  --blue2:   #0f4da0;
  --white:   #ffffff;
  --off:     #f5f5f5;
  --muted:   #888888;
  --light:   #cccccc;
  --font:    'Barlow', 'Segoe UI', sans-serif;
  --font-h:  'Barlow Condensed', 'Arial Narrow', sans-serif;
  --ease:    cubic-bezier(.25,.46,.45,.94);
}

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

body {
  font-family: var(--font);
  background-color: var(--black);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(28,105,212,0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    );
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue); }

/* ══ HEADER ══ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-roundel {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-sub {
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Main nav */
.main-nav { flex: 1; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  justify-content: center;
}

.main-nav a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  transition: color .25s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width .3s var(--ease);
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
  padding: 4px 2px;
  transition: color .2s;
  text-transform: uppercase;
}

.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--blue); }
.lang-sep { color: var(--border); font-size: .75rem; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 20px 40px 30px;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}

.mobile-nav a:hover { color: var(--white); }

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(28,105,212,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(28,105,212,.07) 0%, transparent 60%),
    linear-gradient(135deg, #000 0%, #0a0a14 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 48px;
  letter-spacing: .02em;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .7s forwards;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .9s forwards;
}

/* Buttons */
.cta-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 17px 40px;
  border: 2px solid var(--blue);
  transition: background .25s, color .25s;
  cursor: pointer;
}

.cta-primary:hover {
  background: var(--blue2);
  border-color: var(--blue2);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  transition: border-color .25s, color .25s;
}

.cta-ghost:hover {
  border-color: var(--white);
}

.cta-ghost i {
  transition: transform .25s;
  font-size: .75rem;
}

.cta-ghost:hover i { transform: translateX(5px); }

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══ TICKER ══ */
.ticker {
  background: var(--blue);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--blue2);
  border-bottom: 1px solid var(--blue2);
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}

.ticker-track .dot {
  font-size: .45rem;
  opacity: .6;
  align-self: center;
}

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

/* ══ STATS ══ */
.stats {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin: 0 60px;
}

.stat-item {
  text-align: center;
}

.stat-item h2 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item h2 span {
  color: var(--blue);
}

.stat-item p {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ══ DISCOVER ══ */
.discover {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.discover-bg {
  position: absolute;
  inset: 0;
}

.discover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #08081a;
  transition: transform 8s ease;
}

.discover:hover .discover-img {
  transform: scale(1);
}

.discover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.6) 28%, rgba(0,0,0,0.15) 55%, transparent 75%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%);
}

.discover-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 70px;
}

.discover-content .overline {
  color: var(--blue);
  margin-bottom: 18px;
}

.discover-content h2 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: .95;
  color: var(--white);
  margin-bottom: 24px;
}

.discover-content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
  letter-spacing: .02em;
}

@media (max-width: 768px) {
  .discover { height: 70vh; }
  .discover-content { padding: 0 20px 50px; }
}

/* ══ SERVICES ══ */
.services {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.srv-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.srv-head { position: sticky; top: 100px; }

.srv-head h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 14px;
}

/* Lista — rreshta me linja ndarëse, pa sfond */
.srv-list { border-top: 1px solid var(--border); }

.srv-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity .25s;
}

.srv-list:hover .srv-row { opacity: 0.45; }
.srv-list:hover .srv-row:hover { opacity: 1; }

.srv-row > i {
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
}

.srv-row h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.srv-row p {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .srv-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .srv-head { position: static; }
  .services { padding: 70px 0; }
}

/* ══ ABOUT ══ */
.about {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Majtas — titull i madh */
.about-left h2 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: .92;
  color: var(--white);
  margin-top: 16px;
}

/* Djathtas — tekst + fakte */
.about-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: .02em;
  margin-bottom: 52px;
  padding-top: 8px;
}

/* Fakte në 3 kolona */
.about-facts {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.about-fact {
  padding: 28px 32px 28px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 28px;
}

.about-fact:first-child { padding-left: 0; }
.about-fact:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.about-fact:nth-child(2) { padding-left: 28px; }

.about-fact strong {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.about-fact:first-child strong {
  font-size: 2.8rem;
  color: var(--blue);
  letter-spacing: -.01em;
}

.about-fact span {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .about { padding: 70px 0; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .about-fact:last-child { border-right: none; }
}

/* ══ GALLERY ══ */
.gallery {
  background: var(--black);
  padding: 100px 0;
}

.gal-header {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 60px;
}

.gal-header h2 {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.sale-cta {
  max-width: 700px;
  margin: 0 auto 80px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--dark2);
}
.sale-cta-icon {
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: 24px;
  display: block;
  animation: moto-ride 5s ease-in-out infinite;
}
@keyframes moto-ride {
  0%   { transform: translateX(-40px) rotate(-4deg); }
  50%  { transform: translateX(40px) rotate(4deg); }
  100% { transform: translateX(-40px) rotate(-4deg); }
}
.sale-cta-text {
  font-size: 1.05rem;
  color: var(--light);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.7;
}

.gal-item {
  background: var(--dark2);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.gal-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  opacity: 0;
  transition: opacity .3s;
}

.gal-item:hover { background: var(--dark3); }
.gal-item:hover::before { opacity: .06; }

.gal-item i {
  font-size: 3.5rem;
  color: rgba(255,255,255,.12);
  position: relative;
  z-index: 1;
  transition: color .3s, transform .3s;
}

.gal-item:hover i {
  color: rgba(28,105,212,.5);
  transform: scale(1.1);
}

.gal-label {
  position: relative;
  z-index: 1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}

.gal-item:hover .gal-label { color: var(--blue); }

/* ══ CTA BAND ══ */
.cta-band {
  background: var(--blue);
  padding: 80px 40px;
  text-align: center;
}

.cta-band-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.cta-band-inner p {
  font-size: 1rem;
  font-weight: 300;
  opacity: .85;
  margin-bottom: 40px;
  letter-spacing: .04em;
}

.cta-band .cta-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.cta-band .cta-primary:hover {
  background: var(--off);
  border-color: var(--off);
}

/* ══ CONTACT ══ */
.contact {
  background: var(--dark2);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  margin: 12px 0 40px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-row i {
  color: var(--blue);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}

.info-row div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-row strong {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.info-row span {
  font-size: .92rem;
  color: var(--light);
  font-weight: 300;
}
.info-row span a {
  color: #ffffff;
  text-decoration: none;
}
.info-row span a:hover {
  text-decoration: underline;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: border-color .25s, color .25s, background .25s;
}

.social-row a:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.form-field {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-top: none;
  padding: 0;
}

.form-field:first-child,
.contact-form > .form-field:first-of-type {
  border-top: 1px solid var(--border);
}

.form-row .form-field:first-child {
  border-right: none;
}

.contact-form > .form-field {
  border-top: none;
}

.contact-form > .form-field:nth-of-type(1) { border-top: 1px solid var(--border); }

.form-field label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 16px 20px 4px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 300;
  padding: 0 20px 16px;
  transition: background .2s;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--border);
}

.form-field select option {
  background: var(--dark3);
  color: var(--white);
}

.form-field textarea {
  resize: none;
  line-height: 1.6;
}

.form-field:focus-within {
  border-color: var(--blue);
  background: rgba(28,105,212,.04);
}

.contact-form .cta-primary {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  border: none;
}

/* ══ FOOTER ══ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
}

/* ══ REVEAL ANIMATION ══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ MOTO SHOWCASE (foto reale) ══ */
.moto-showcase {
  position: relative;
  width: 100%;
  height: 420px;
  background: #000;
  overflow: hidden;
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

/* Vignette laterale për të "hequr" sfondin e bardhë */
.moto-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000 0%,
    transparent 18%,
    transparent 82%,
    #000 100%
  );
  z-index: 2;
  pointer-events: none;
}

.moto-showcase-inner {
  position: absolute;
  bottom: 0;
  animation: motoRide 9s linear infinite;
  will-change: transform;
  perspective: 900px;
}

.moto-frame {
  position: relative;
  width: 570px;
  height: 380px;
}

/* Rrethi kloçak — shikon vetëm rrotën nga foto */
.wheel-cut {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

/* Rrota e përparme (e majta në foto) — cx≈134 cy≈277 r≈94 */
.wheel-front {
  width: 188px; height: 188px;
  left: 40px; top: 183px;
}

/* Rrota e pasme (e djathta në foto) — cx≈433 cy≈280 r≈90 */
.wheel-rear {
  width: 180px; height: 180px;
  left: 343px; top: 190px;
}

/* Imazhi i motorit brenda rrethit — pozicionohet saktë dhe rrotullohet */
.wheel-spin {
  position: absolute;
  width: 570px;
  height: 380px;
  filter: url('#rm-white');
  animation: spinWheel 0.8s linear infinite;
}

/* transform-origin = qendra e rrotës në koordinatat e imazhit */
.wheel-spin-front {
  left: -40px; top: -183px;
  transform-origin: 134px 277px;
}

.wheel-spin-rear {
  left: -343px; top: -190px;
  transform-origin: 433px 280px;
}

@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.moto-real-bike {
  height: 380px;
  width: auto;
  display: block;
  /* Heq sfondin e bardhë */
  filter:
    url('#rm-white')
    drop-shadow(0 30px 40px rgba(0,0,0,0.95));
  /* Efekt 3D */
  transform: perspective(900px) rotateY(-12deg) rotateX(2deg);
  transform-origin: center bottom;
  transform-style: preserve-3d;
}

/* Djathtas → Majtas */
@keyframes motoRide {
  0%   { transform: translateX(calc(100vw + 100px)); }
  100% { transform: translateX(-800px); }
}

.moto-showcase-label {
  position: absolute;
  bottom: 12px;
  right: 28px;
  font-family: var(--font);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(28,105,212,0.6);
  z-index: 3;
}

/* ══ MAP ══ */
.map-wrapper {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.map-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-label i {
  color: var(--blue);
  font-size: 1rem;
}

.map-iframe {
  width: 100%;
  height: 380px;
  border: none;
  border: 1px solid var(--border);
  filter: grayscale(1) invert(1) contrast(0.85);
  transition: filter .4s;
}

.map-iframe:hover {
  filter: grayscale(0.3) invert(0) contrast(1);
}

@media (max-width: 768px) {
  .map-wrapper { padding: 0 20px; }
  .map-iframe { height: 260px; }
}

/* ══ MOTO ANIMATION LANE ══ */
.moto-lane {
  position: relative;
  width: 100%;
  height: 310px;
  background: #000;
  overflow: hidden;
  border-top: 1px solid rgba(28,105,212,0.3);
  border-bottom: 1px solid rgba(28,105,212,0.3);
}

.moto-road-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 75px;
  background: linear-gradient(to top, rgba(8,8,8,0.98), transparent);
  pointer-events: none;
}

.moto-centerline {
  position: absolute;
  bottom: 54px; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.10) 0px,
    rgba(255,255,255,0.10) 26px,
    transparent 26px,
    transparent 66px
  );
  animation: dashScroll .7s linear infinite;
}

@keyframes dashScroll {
  from { background-position-x: 0; }
  to   { background-position-x: -66px; }
}

.moto-bike {
  position: absolute;
  bottom: 42px; left: 0;
  animation: bikeRide 6s linear infinite;
  will-change: transform;
}

@keyframes bikeRide {
  0%   { transform: translateX(-780px); }
  100% { transform: translateX(calc(100vw + 120px)); }
}

.moto-label {
  position: absolute;
  bottom: 14px; right: 28px;
  font-family: var(--font);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(28,105,212,0.5);
}

/* ══ KEYFRAMES ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 40px;
  }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 320px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .header-inner { padding: 0 20px; }

  .hero-content {
    padding: 120px 20px 80px;
  }

  .section-header,
  .services-grid,
  .gallery-grid { padding: 0 20px; }

  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }

  .about-copy { padding: 48px 20px; }

  .contact-wrapper { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-field:first-child { border-right: 1px solid var(--border); }

  .footer-inner { padding: 0 20px; flex-direction: column; text-align: center; }

  .stats-inner { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
