* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1e1e1e;
  line-height: 1.5;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
section {
  padding: 2rem 0;
}
.section-title {
  font-size: 3rem;
  margin-bottom: 0;
  text-align: center;
  position: relative;
}
.section-title span {
  color: #393085;
  background: linear-gradient(135deg, #393085, #5f4bc2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  background: #393085;
  color: white;
  border: none;
  padding: 1rem 2.8rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 18px rgba(57, 48, 133, 0.25);
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  background: #2d2670;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(57, 48, 133, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid #393085;
  color: #393085;
  padding: 1rem 2.8rem;
  border-radius: 60px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  background: #393085;
  color: white;
}


/* header */
header {
  position: fixed;
  width: 100%;
  color: black;
  top: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
  background: transparent;
}
 header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  color: black;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem 3rem;
 }  
.logo img {
  height: 50px;
}
.logo a {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: black;
  text-decoration: none;
}
header.scrolled .logo a {
  color: #1e1e1e;
}
.nav-menu {
  display: flex;
  color:black;
  gap: 2.8rem;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .nav-menu a,
  header.scrolled .nav-menu a {
    color: black !important;
  }
}
header.scrolled .nav-menu a {
  color: #111;
}

.nav-menu a:hover {
  color: #fff;
  background: linear-gradient(135deg, #393085, #5f4bc2);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.lang-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: black;
  font-weight: 500;
}
header.scrolled .lang-wrap {
  color: #1e1e1e;
}
.lang-wrap i {
  font-size: 1.2rem;
}
.btn-quote {
  background: #393085;
  border: none;
  color: white;
  padding: 0.6rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.btn-quote:hover {
  background: #2d2670;
}
.mobile-toggle {
  display: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
header.scrolled .mobile-toggle {
  color: #1e1e1e;
}

/* hero */
.hero {
  min-height: 100vh;
  width: 100;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(0, 0, 0, 0.4) 0%, rgba(57, 48, 133, 0.4) 100%);
  z-index: 1;
}
.hero-content {
  max-width: 900px;
  padding-left: 5%;
  color: white;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

/* product tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.tab-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 0.7rem 2.2rem;
  border-radius: 60px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  color: #333;
}
.tab-btn.active,
.tab-btn:hover {
  background: #393085;
  border-color: #393085;
  color: white;
}

/* sub-gallery */
.sub-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.sub-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
  background: white;
  cursor: pointer;
}
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 30px rgba(57, 48, 133, 0.15);
}
.sub-item img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}
.sub-item p {
  padding: 0.8rem;
  font-weight: 500;
  text-align: center;
}

/* main category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.category-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
  text-decoration: none;
  color: inherit;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 45px -12px rgba(57, 48, 133, 0.25);
}
.card-image {
  height: 240px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.7s;
}
.category-card:hover .card-image img {
  transform: scale(1.12);
}
.card-content {
  padding: 2rem;
}

/* global exporter section with world map + products */
.global-exporter {
  background: #f2f4fb;
  border-radius: 60px;
  padding: 4rem;
  background-image: url(""); /* free world map */
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-color: #e0e4f0;
}
.global-overlay {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 3rem;
}
.map-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.map-product {
  background: white;
  border-radius: 30px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.map-product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* footer */
footer {
  background: #0b0b15;
  color: #b9b9d0;
  padding: 5rem 3rem 2.5rem;
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer-col a,
.footer-col p {
  color: #b9b9d0;
  text-decoration: none;
  display: block;
  margin-bottom: 0.6rem;
}
.footer-col a:hover {
  color: white;
}
.socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.socials a {
  color: #b9b9d0;
  font-size: 1.5rem;
}
.socials a:hover {
  color: #393085;
}

/* lightbox with contact */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  flex-direction: column;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.lightbox-main {
  max-height: 60vh;
  max-width: 90vw;
  border-radius: 20px;
}
.lightbox-thumbs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}
.lightbox-thumb.active,
.lightbox-thumb:hover {
  border-color: #393085;
}
.lightbox .btn-contact {
  margin-top: 1rem;
  background: #25d366;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3.5rem;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }

  .map-products {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 1.5rem;
  }
  .section-title {
    font-size: 2.4rem;
  }
}

/* =================================
   GLOBAL RESPONSIVE FIX
================================= */

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
}

/* =================================
   TABLET FIX
================================= */

@media (max-width: 1100px) {
  header {
    padding: 1rem 2rem;
  }

  .logo a {
    font-size: 1.8rem;
  }

  .hero-content {
    padding-left: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =================================
   MOBILE NAVBAR
================================= */

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* remove quote button on mobile */
  .btn-quote {
    display: none;
  }

  .header-actions {
    gap: 1rem;
  }

  .lang-wrap span {
    display: none;
  }

  header {
    padding: 0.9rem 1.2rem;
  }

  .logo a {
    font-size: 1.6rem;
  }
}

/* =================================
   HERO MOBILE
================================= */

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* =================================
   PRODUCT TABS MOBILE
================================= */

@media (max-width: 768px) {
  .product-tabs {
    overflow-x: auto;
    justify-content: center;
    padding-bottom: 10px;
  }

  .tab-btn {
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .sub-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =================================
   CATEGORY GRID
================================= */

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 200px;
  }
}

/* =================================
   GLOBAL EXPORTER SECTION
================================= */

@media (max-width: 900px) {
  .global-exporter {
    padding: 2rem;
    border-radius: 30px;
  }

  .global-overlay {
    padding: 2rem;
  }

  .map-products {
    grid-template-columns: 1fr;
  }

  .map-product img {
    height: 140px;
  }
}

/* =================================
   FOOTER FIX
================================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}

/* =================================
   LIGHTBOX MOBILE
================================= */

@media (max-width: 600px) {
  .lightbox-main {
    max-width: 95vw;
    max-height: 50vh;
  }

  .lightbox-thumb {
    width: 60px;
    height: 50px;
  }

  .close-lightbox {
    font-size: 2.5rem;
    top: 20px;
    right: 20px;
  }
}


/* ===============================
GLOBAL OVERFLOW FIX
================================ */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* prevent any element from expanding */
* {
  max-width: 100%;
}

/* ===============================
HEADER MOBILE FIX
================================ */

@media (max-width: 900px) {
  header {
    width: 100%;
    padding: 14px 16px;
  }

  .logo a {
    font-size: 1.6rem;
  }

  .header-actions {
    gap: 12px;
  }

  .lang-wrap span {
    display: none;
  }

  .btn-quote {
    display: none;
  }
}

/* stats row fix */

@media (max-width: 600px) {
  section .container div[style*="display: flex; gap: 3rem"] {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px !important;
    text-align: center;
  }

  section .container div[style*="display: flex; gap: 3rem"] h4 {
    font-size: 1.9rem !important;
  }
}

/* ===============================
CATEGORY GRID FIX
================================ */

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ===============================
SUB GALLERY FIX
================================ */

@media (max-width: 768px) {
  .sub-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .sub-gallery {
    grid-template-columns: 1fr;
  }
}

/* ===============================
EXPORT SECTION FIX
================================ */

@media (max-width: 900px) {
  .global-exporter {
    padding: 25px;
    border-radius: 30px;
  }

  .global-overlay {
    padding: 20px;
  }

  .map-products {
    grid-template-columns: 1fr;
  }
}

/* ===============================
FOOTER FIX
================================ */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}

/* ===============================
LIGHTBOX FIX
================================ */

@media (max-width: 600px) {
  .lightbox-main {
    max-width: 95vw;
    max-height: 50vh;
  }
}

/* ===============================
FLOAT BUTTON FIX
================================ */


.footerbottom {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  line-height: 20px;
}

/* ===============================
FULL WIDTH GLOBAL CTA
================================ */

.cta-global {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
}

/* full width background */

.cta-global-box {
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  text-align: center; /* center text */
  padding: 4rem 6%;
  background:
    linear-gradient(120deg, rgba(57, 48, 133, 0.92), rgba(0, 0, 0, 0.85)),
    url("./img/map.avif");
  background-size: cover;
  background-position: center;
}

/* inner content */

.cta-global-inner {
  max-width: 650px;
  color: white;
  margin: auto;
  text-align: center;
}

/* title */

.cta-global-inner h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

/* description */

.cta-global-inner p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* buttons */

.cta-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn-outline-light {
  border: 2px solid white;
  padding: 0.9rem 2.3rem;
  border-radius: 60px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: white;
  color: #000000 !important;
}

/* stats */

.cta-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-stat h3 {
  font-size: 2.2rem;
}

.cta-stat span {
  font-size: 0.9rem;
  opacity: 0.85;
}
/* ===============================
CTA RESPONSIVE
================================ */

@media (max-width: 900px) {
  .cta-global-box {
    min-height: 55vh;
    padding: 3rem 6%;
  }

  .cta-global-inner h2 {
    font-size: 2.4rem;
  }

  .cta-stats {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .cta-global-box {
    border-radius: 0 0 40px 40px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===============================
QUALITY SECTION
================================ */

.quality-section {
  background: #f9fafc;
  padding: 2rem 0;
}

/* intro text */

.quality-intro {
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

/* grid */

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* cards */

.quality-card {
  background: white;
  border-radius: 35px;
  padding: 2.8rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
  border: 1px solid rgba(57, 48, 133, 0.08);
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(57, 48, 133, 0.25);
}

/* icon */

.quality-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 20px;
  background: rgba(57, 48, 133, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.quality-icon i {
  font-size: 2rem;
  color: #393085;
}

/* title */

.quality-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

/* text */

.quality-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
/* ===============================
QUALITY RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-section {
    padding: 2rem 0;
  }
}

/* ===============================
ABOUT SECTION
================================ */

.about-section {
  padding: 2rem 0;
  background: #ffffff;
}

/* layout */

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* title */

.about-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

/* text */

.about-text {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
}

/* stats */

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}

.about-stat h4 {
  font-size: 2.6rem;
  color: #393085;
  margin-bottom: 5px;
}

.about-stat p {
  font-size: 0.95rem;
  color: #666;
}

/* image */

.about-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
/* ===============================
ABOUT RESPONSIVE
================================ */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-title {
    text-align: center;
  }

  .about-text {
    margin: auto;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-image img {
    max-width: 500px;
    margin: auto;
  }
}

@media (max-width: 500px) {
  .about-stats {
    flex-direction: column;
    gap: 1.2rem;
  }

  .about-stat h4 {
    font-size: 2.2rem;
  }
}
/* ==========================
BIKE PARTS SECTION
========================== */

.bike-parts-section {
  padding: 2rem 0;
  background: #f8f9fc;
}

/* bike selector */

.bike-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
}

.bike-tab {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.bike-tab.active {
  background: #393085;
  color: white;
  border-color: #393085;
}

/* layout */

.bike-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* bike image */

.bike-image img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: auto;
}

/* parts grid */

.bike-parts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bike-part {
  background: white;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.bike-part img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.bike-part:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(57, 48, 133, 0.2);
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 900px) {
  .bike-display {
    grid-template-columns: 1fr;
  }

  .bike-parts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .bike-parts-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
BIKE PART EXPLORER
========================= */

.bike-explorer {
  padding: 2rem 0;
  background: #f8f9fc;
}

.explorer-intro {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 3rem;
  color: #555;
}

.bike-explorer-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* BIKE */

.bike-visual {
  position: relative;
}

.bike-img {
  width: 100%;
  max-width: 650px;
  display: block;
  margin: auto;
}

/* HOTSPOTS */

.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #6dfa35;
  border-radius: 50%;
  cursor: pointer;

  box-shadow: 0 0 0 6px rgba(57, 48, 133, 0.2);

  animation: hotspotGlow 1.8s infinite;
  transition: 0.2s;
}

/* Glow animation */
@keyframes hotspotGlow {
  0% {
    box-shadow:
      0 0 0 0 rgba(89, 255, 0, 0.7),
      0 0 10px rgba(89, 255, 0, 0.9),
      0 0 20px rgba(89, 255, 0, 0.6);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(89, 255, 0, 0.2),
      0 0 20px rgba(89, 255, 0, 1),
      0 0 40px rgba(89, 255, 0, 0.8);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(89, 255, 0, 0),
      0 0 10px rgba(89, 255, 0, 0.9),
      0 0 20px rgba(89, 255, 0, 0.6);
  }
}

.hotspot:hover {
  transform: scale(1.3);
}

/* PART INFO */

.part-info {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.part-info img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 1rem;
}

.part-info h3 {
  margin-bottom: 10px;
  color: #393085;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 900px) {
  .bike-explorer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* stats */
.export-mobile-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;

  margin-top: 2rem;
}

.export-mobile-stats h3 {
  color: #393085;
  font-size: 1.8rem;
}

.export-mobile-stats p {
  font-size: 0.85rem;
  color: #555;
}

/* MOBILE NAV */

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    padding: 20px;
    display: none;
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* =========================================
   MOBILE EXPORT MAP SECTION
========================================= */

.mobile-export-map {
  padding: 5rem 1.5rem;
  text-align: center;
  background: #f7f8fc;
}

/* hide on desktop */
@media (min-width: 900px) {
  .mobile-export-map {
    display: none;
  }
}

/* =========================================
   MAP CONTAINER
========================================= */

.mobile-map {
  position: relative;
  max-width: 420px;
  margin: 2rem auto 0;
  overflow: hidden; /* FIX alignment issue */
}

.mobile-map img {
  width: 100%;
  display: block;
}

/* =========================================
   DOT STYLE (CLEAN + NO DUPLICATE)
========================================= */

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #5a4bff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;

  /* glow */
  box-shadow:
    0 0 0 6px rgba(90, 75, 255, 0.15),
    0 0 18px rgba(90, 75, 255, 0.6);

  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

/* active dot */
.map-dot.active {
  background: #ff4d4d;
  box-shadow:
    0 0 0 6px rgba(255, 77, 77, 0.2),
    0 0 20px rgba(255, 77, 77, 0.8);
}

/* =========================================
   LABEL (FIXED + CLEAN)
========================================= */

.map-dot span {
  position: absolute;
  bottom: 160%;
  left: 50%;
  transform: translateX(-50%);

  background: #111; /* better visibility */
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;

  white-space: nowrap;
  opacity: 0;
  pointer-events: none;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
  z-index: 10;
}

/* arrow */
.map-dot span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);

  width: 7px;
  height: 7px;
  background: #111;
}

/* active label */
.map-dot.active span {
  opacity: 1;
  transform: translateX(-50%) translateY(-3px);
}

/* =========================================
   POSITIONS (FIXED PROPERLY)
========================================= */

/* ASIA */
.india {
  top: 45%;
  left: 64%;
}
.bangladesh {
  top: 44%;
  left: 66%;
}
.srilanka {
  top: 51%;
  left: 65%;
}
.dubai {
  top: 41%;
  left: 60%;
}
.middleeast {
  top: 40%;
  left: 61%;
}

/* AFRICA */
.egypt {
  top: 38%;
  left: 56%;
}
.nigeria {
  top: 47%;
  left: 51%;
}
.congo {
  top: 53%;
  left: 54%;
}
.tanzania {
  top: 58%;
  left: 53%;
}
.ethiopia {
  top: 47%;
  left: 51%;
}
.uganda {
  top: 51%;
  left: 52%;
}
.burundi {
  top: 54%;
  left: 51%;
}
.africa {
  top: 51%;
  left: 53%;
}

/* EUROPE */
.europe {
  top: 27%;
  left: 57%;
}

/* AMERICA */
.mexico {
  top: 47%;
  left: 26%;
}

/* =========================================
   PULSE ANIMATION (FIXED)
========================================= */

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.6);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================
   RESPONSIVE TWEAKS
========================================= */

@media (max-width: 480px) {
  .mobile-map {
    max-width: 100%;
  }

  .map-dot {
    width: 10px;
    height: 10px;
  }

  .map-dot span {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* ======================================== */
.export-map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.export-intro {
  margin: auto;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

/* MAP */
.map-img {
  width: 100%;
  display: block;
}

/* SVG container */
.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* CLEAN PATH (very light line) */
.map-lines path {
  stroke: rgba(0, 0, 0, 0.15);
  stroke-width: 0.25;
  fill: none;
}

/* MOVING DOT */
.moving-dot {
  r: 0.7;
  fill: #ff0000;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.8));
}

/* INDIA */
.map-center {
  position: absolute;
  left: 57%;
  top: 56%;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* FLAGS */
.map-flag {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  transform: translate(-50%, -50%);
}

.map-flag img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.map-flag:hover img {
  transform: scale(1.2);
}

/* TOOLTIP */
.map-flag span {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-size: 19px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}

.map-flag:hover span {
  opacity: 1;
}

.export-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 50px;
  flex-wrap: wrap;
  width: 100%;
  padding: 1rem;
}

/* EACH STAT BOX */
.export-stats div {
  /* flex: 1; */
  min-width: 180px;
}

/* NUMBER */
.export-stats h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

/* TEXT */
.export-stats p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}
/* TABLET */
@media (max-width: 992px) {
  .export-stats {
    gap: 30px;
  }

  .export-stats h3 {
    font-size: 26px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .export-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .export-stats div {
    width: 100%;
  }

  .export-stats h3 {
    font-size: 24px;
  }

  .export-stats p {
    font-size: 14px;
  }
}

/* Container Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

/* Card Design */
.country-card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Glow Effect Background */
.country-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 44, 44, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

/* Hover Effects */
.country-card:hover::before {
  opacity: 1;
}

.country-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 44, 44, 0.25);
}

/* Flag Image */
.country-card img {
  width: 80px;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.country-card:hover img {
  transform: scale(1.1);
}

/* Country Name */
.country-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Subtle Text Glow */
.country-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #ff2c2c;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .countries-grid {
    grid-template-columns: 1fr;
  }
}

.allbikebutton {
  text-align: center;
  margin-top: 50px;
}

.allbikebutton a {
  margin: auto;
  padding: 20px;
  background-color: #393085;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
}

.allbikebutton a:hover {
  background-color: #261a91;
}
/* WRAPPER */
.countries-wrapper {
  margin-top: 50px;
}

/* KEEP YOUR EXISTING GRID FOR BIG */
.countries-grid.big {
  grid-template-columns: repeat(3, 1fr);
}

/* SMALL COUNTRIES (CHIPS STYLE) */
.countries-small {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
  justify-content: center;
}

/* SMALL CHIP DESIGN */
.country-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 19px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

/* FLAG */
.country-chip img {
  width: 20px;
  height: 14px;
  border-radius: 3px;
}

/* Container */
.float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Buttons */
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Colors */
.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.call {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.email {
  background: linear-gradient(135deg, #ff5722, #e64a19);
}

/* Hover Effects */
.float-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Glow Effect */
.float-btn::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.15);
  top: -10%;
  left: -10%;
  border-radius: 50%;
  opacity: 0;
  transition: 0.4s;
}

.float-btn:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .float-container {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}






/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  /* height: 800px; */
  /* width: 800px; */
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  margin :0;
  padding: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Dropdown links */
.dropdown-menu a {
  padding: 0.8rem 1rem;
  color: #111;
  text-decoration: none;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #f3f3f3;
  color: #393085;
}

/* Sub-dropdown container */
.sub-dropdown {
  position: absolute;
  display: block;
  flex-direction: column;
}

.sub-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Sub-dropdown menu */
.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Show on click (desktop) */
.sub-dropdown.active .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.dropdown-item {
  position: relative;
}

.dropdown-item:hover .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  display: block;
  top: 0;
  left: 100%;
}
.dropdown-submenu {
  position: relative;
}


/* Show on click (desktop) */
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    color: white;
  }

  .sub-dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
  }

  .sub-dropdown.active .sub-dropdown-menu {
    display: flex;
  }
}

/* ===============================
   WHY CHOOSE US
================================ */
.why-choose-section {
  padding: 5rem 0;
  background: #f7f9fd;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #edf1f7;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #393085, #5f4bc2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(57, 48, 133, 0.1);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #f0f4ff;
  color: #393085;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s ease;
}
.why-card:hover .why-icon {
  background: #393085;
  color: #ffffff;
  transform: rotateY(360deg);
}
.why-card h3 {
  font-size: 1.4rem;
  color: #183153;
  margin-bottom: 1rem;
}
.why-card p {
  color: #5c6b8a;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 0;
  }
}
