/* ============================================
   N.S. AUTO WORKS — CSS
   Theme: Dark + Blue-Orange (Professional / Trustworthy)
============================================ */

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

:root {
  --primary:    #1E88E5;
  --primary-dim:#1565C0;
  --amber:      #FF8F00;
  --bg:         #0A0A0A;
  --bg-alt:     #111111;
  --card:       #181818;
  --border:     #2a2a2a;
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.5);
  --radius:     12px;
  --glow:       0 0 40px rgba(30,136,229,0.2);
  --shadow:     0 8px 40px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* --- GRADIENT TEXT --- */
.highlight {
  background: linear-gradient(120deg, var(--primary) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- SECTION TAG --- */
.section-tag {
  display: inline-block;
  background: rgba(30,136,229,0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid rgba(30,136,229,0.25);
}

.section-sub { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 8px; margin-bottom: 48px; max-width: 520px; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(30,136,229,0.35);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary:hover { background: var(--primary-dim); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(30,136,229,0.5); }
.btn-primary.full { width: 100%; text-align: center; padding: 16px; font-size: 16px; }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================
   NAV
============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: white !important; padding: 10px 20px; border-radius: 4px; }
.hamburger { display: none; background: none; border: none; font-size: 22px; color: var(--white); cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; list-style: none; padding: 12px 24px 20px; border-top: 1px solid var(--border); gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; padding: 10px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--primary); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px max(24px, calc((100vw - 1100px) / 2 + 24px)) 80px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(30,136,229,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-bike {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  z-index: 0;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-bike img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.6) saturate(1.1);
}
.hero-bike-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,10,10,0.5) 35%, transparent 65%);
}
.hero-badge {
  display: inline-block;
  background: rgba(30,136,229,0.1);
  color: var(--primary);
  border: 1px solid rgba(30,136,229,0.25);
  font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 4px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: 2px;
}
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.stat span { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--primary); letter-spacing: 2px; line-height: 1; }
.stat p { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ============================================
   TICKER
============================================ */
.ticker {
  background: var(--primary);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 28px;
  animation: ticker 30s linear infinite;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================
   SERVICES
============================================ */
.services { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.services h2 { font-size: clamp(36px, 5vw, 60px); color: var(--white); margin-bottom: 8px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { border-color: rgba(30,136,229,0.4); box-shadow: var(--glow); transform: translateY(-4px); }
.service-card.featured-service {
  border-color: rgba(30,136,229,0.5);
  background: linear-gradient(140deg, rgba(30,136,229,0.08) 0%, var(--card) 60%);
  box-shadow: var(--glow);
}
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 24px; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: rgba(30,136,229,0.1);
  color: var(--primary);
  border: 1px solid rgba(30,136,229,0.2);
  padding: 4px 12px; border-radius: 4px;
}

/* ============================================
   WHY US
============================================ */
.why { padding: 100px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why h2 { font-size: clamp(36px, 5vw, 64px); color: var(--white); margin-bottom: 16px; line-height: 0.95; }
.why-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.why-list li { display: flex; gap: 18px; align-items: flex-start; }
.why-icon { font-size: 28px; flex-shrink: 0; }
.why-list strong { display: block; font-size: 16px; color: var(--white); margin-bottom: 4px; }
.why-list p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Price Compare & Badge Block */
.why-visual { display: flex; flex-direction: column; gap: 20px; }
.price-compare {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.compare-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 28px; }
.compare-item { margin-bottom: 24px; }
.compare-label { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.compare-bar { background: rgba(255,255,255,0.06); border-radius: 4px; height: 10px; overflow: hidden; margin-bottom: 6px; }
.bar-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }
.bar-fill.dealer { background: rgba(255,255,255,0.25); }
.bar-fill.ns     { background: linear-gradient(90deg, var(--primary), var(--amber)); }
.compare-price { font-size: 13px; color: var(--muted); }
.ns-price { color: var(--primary); font-weight: 700; font-size: 14px !important; }
.compare-note { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 8px; }

.badge-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.badge-item { text-align: center; flex: 1; }
.badge-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--primary); letter-spacing: 2px; line-height: 1; }
.badge-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.badge-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.testimonials h2 { font-size: clamp(36px, 5vw, 60px); color: var(--white); margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(30,136,229,0.3); }
.review-card.featured-review {
  border-color: rgba(30,136,229,0.4);
  background: linear-gradient(140deg, rgba(30,136,229,0.07) 0%, var(--card) 60%);
}
.stars { font-size: 16px; margin-bottom: 14px; }
.review-card p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.reviewer { font-size: 13px; font-weight: 600; color: var(--primary); }
.reviews-note { text-align: center; color: var(--muted); font-size: 15px; margin-top: 40px; }

/* ============================================
   GALLERY
============================================ */
.gallery { padding: 80px 0; background: var(--bg); }
.gallery h2 { font-size: 36px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
.gallery-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 24px;
  font-style: italic;
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   CONTACT
============================================ */
.contact { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text h2 { font-size: clamp(32px, 4vw, 52px); color: var(--white); line-height: 1.05; margin-bottom: 16px; }
.contact-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item > span { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.contact-item a { color: var(--primary); text-decoration: none; font-size: 16px; font-weight: 600; line-height: 1.5; }
.contact-item a:hover { text-decoration: underline; }
.contact-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select { color: rgba(255,255,255,0.5); }
.form-group select option { background: #181818; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,136,229,0.1); }
.form-group textarea { resize: vertical; }
.form-success { display: none; color: var(--primary); font-weight: 600; text-align: center; padding: 8px 0; }

/* ============================================
   REVIEW CTA
============================================ */
.review-cta {
  background: linear-gradient(135deg, #000A1A 0%, #001030 100%);
  border-top: 1px solid rgba(30,136,229,0.2);
  border-bottom: 1px solid rgba(30,136,229,0.2);
  padding: 70px 0;
}
.review-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.review-stars { font-size: 28px; margin-bottom: 10px; }
.review-cta h2 { font-size: clamp(28px, 4vw, 46px); color: var(--white); margin-bottom: 8px; }
.review-cta p  { font-size: 16px; color: var(--muted); }
.btn-review {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-review:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 30px rgba(30,136,229,0.4);
}

/* ============================================
   MAP
============================================ */
.map-section {
  border-top: 1px solid var(--border);
}

/* ============================================
   FOOTER
============================================ */
.footer { background: #060606; padding: 60px 0 28px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 26px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 280px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 13px; font-family: 'Inter', sans-serif; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { padding: 80px 24px 60px; min-height: auto; }
  .hero h1 { font-size: clamp(52px, 14vw, 80px); }
  .hero-stats { gap: 24px; }
  .hero-bike { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 14px; align-items: flex-start; }
  .badge-block { gap: 8px; padding: 20px; }
  .badge-num { font-size: 30px; }
  .review-cta-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
