﻿:root {
  --primary-color: #a32919;
  --secondary-color: #100f0f;
  --text-color: #ffffff;
  --light-gray: #a9a9a9;
  --dark-gray: #464646;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.gallery-section {
  padding: 80px 5%;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* ── Animated marquee gallery (Our Happy Customers) ───────── */
.masonry-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 36px auto 0;
  height: 880px;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}

.masonry-col.scroll-up {
  animation: masonry-scroll-up 40s linear infinite;
}
.masonry-col.scroll-down {
  animation: masonry-scroll-down 50s linear infinite;
}
.masonry-col.scroll-up-slow {
  animation: masonry-scroll-up 60s linear infinite;
}
.masonry-col.scroll-down-slow {
  animation: masonry-scroll-down 45s linear infinite;
}

.masonry-grid:hover .masonry-col {
  animation-play-state: paused;
}

.masonry-col img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}
.masonry-col img:hover {
  transform: scale(1.03);
}

@keyframes masonry-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes masonry-scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    height: 760px;
  }
  .masonry-col:nth-child(4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    height: 600px;
    gap: 10px;
  }
  .masonry-col {
    gap: 10px;
  }
  .masonry-col:nth-child(3),
  .masonry-col:nth-child(4) {
    display: none;
  }
}
@media (max-width: 480px) {
  .masonry-grid {
    height: 520px;
    gap: 8px;
    padding: 0 4px;
  }
  .masonry-col {
    gap: 8px;
  }
  .masonry-col img {
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .masonry-col.scroll-up,
  .masonry-col.scroll-down,
  .masonry-col.scroll-up-slow {
    animation: none;
  }
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  display: none;
}

.gallery-track {
  display: flex;
  gap: 15px;
  animation: scroll 30s linear infinite;
  width: calc(250px * 12);
}

.gallery-track img {
  width: 290px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 6));
  }
}

.gallery-slider:hover .gallery-track {
  animation-play-state: paused;
}

.range-section {
  padding: 36px 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
}

.range-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.range-intro {
  max-width: 800px;
  text-align: center;
  color: var(--secondary-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 8px;
}

.range-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  width: 100%;
}

.range-card {
  background: #a32919;
  border-radius: 10px;
  padding: 18px 20px 20px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  text-decoration: none;
}

.range-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.range-card,
.range-card:link,
.range-card:visited,
.range-card:hover,
.range-card:active {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.range-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.range-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .range-inner {
    padding: 0 6px;
  }
}

@media (max-width: 768px) {
  .gallery-track {
    gap: 10px;
  }

  .gallery-track img {
    width: 200px;
    height: 140px;
  }

  @keyframes scroll {
    100% {
      transform: translateX(calc(-200px * 6));
    }
  }

  @media (max-width: 600px) {
    .gallery-slider {
      display: block;
    }

    .gallery-track {
      gap: 12px;
      display: flex;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }

    .gallery-track img {
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 240px;
      height: 160px;
    }

    .gallery-slider .slider-nav {
      display: flex;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      z-index: 3;
      cursor: pointer;
    }

    .gallery-slider .slider-nav.prev {
      left: 8px;
    }

    .gallery-slider .slider-nav.next {
      right: 8px;
    }
  }
}

@media (max-width: 768px) {
  .services-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 10px;
  }

  .services-container::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 90%;
    max-width: 90%;
    min-width: 260px;
    scroll-snap-align: start;
    margin: 0 auto;
    min-height: 320px;
  }

  .services-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
  }

  .services-nav-btn:focus {
    outline: 2px solid #fff;
  }

  .services-nav-btn.prev {
    left: 8px;
  }

  .services-nav-btn.next {
    right: 8px;
  }

  .services-section h2 {
    font-size: 1.6rem;
  }

  .services-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    display: flex;
    gap: 8px;
    z-index: 5;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }

  .services-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.22s ease;
  }

  .services-dot.active {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(163, 41, 25, 0.08);
  }
}

@media (max-width: 480px) {
  .gallery-section h2 {
    font-size: 2rem;
  }

  .gallery-track img {
    width: 160px;
    height: 100%;
  }

  @keyframes scroll {
    100% {
      transform: translateX(calc(-160px * 6));
    }
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 8% auto;
  padding: 20px 22px;
  border-radius: 12px;

  width: 90%;
  max-width: 520px;
  text-align: left;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  position: relative;
  transition:
    transform 240ms ease,
    opacity 240ms ease;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

.modal {
  animation: modalFade 220ms ease forwards;
  backdrop-filter: blur(4px);
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  color: var(--primary-color, #ff6b00);
  display: block;
  font-weight: 700;
}

.modal-content .close {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  color: #666;
}

.modal-content form {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-content input[type="text"],
.modal-content textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  resize: vertical;
  background: #fff;
  transition:
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.modal-content input[type="text"]:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 0, 0.9);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.08);
}

.modal-content textarea {
  min-height: 110px;
}

.star-rating,
#starRating {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 4px 0 6px 0;
}

.star-rating .star,
#starRating .star {
  cursor: pointer;
  font-size: 1.35rem;
  color: #ddd;
  transition:
    transform 120ms ease,
    color 140ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.star-rating .star:hover,
#starRating .star:hover {
  transform: translateY(-3px);
  color: #ffca77;
}

.star-rating .star.selected i,
#starRating .star.selected i {
  color: #ffb400;
}

.star-rating .star i,
#starRating .star i {
  pointer-events: none;
}

.submit-btn {
  background: linear-gradient(90deg, var(--primary-color, #ff6b00), #ff8a3a);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  align-self: flex-end;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.14);
}

.submit-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .modal-content {
    margin: 6% 12px;
    padding: 16px;
  }

  .modal-content h3 {
    font-size: 1.05rem;
  }

  .star-rating {
    justify-content: center;
  }
}

.number-option {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.number-option:hover {
  background-color: #128c7e;
}

#callModal .number-option {
  background-color: #007bff;
}

#callModal .number-option:hover {
  background-color: #0056b3;
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  outline: none;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn i {
  font-size: 28px;
  color: white;
}

.whatsapp-btn {
  background-color: #25d366;
  text-decoration: none;
}

.call-btn {
  background-color: var(--primary-color);
  text-decoration: none;
}

.youtube-btn {
  background-color: white;
  text-decoration: none;
}

.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-btn:hover::after {
  opacity: 1;
  right: 75px;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 24px;
  }
}

.featured-bikes-section {
  padding: 40px 5%;
  background-color: white;
}

.featured-bikes-section h2 {
  color: #333;
}
.view-all {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.range-image {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .range-image {
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 8px;
  }
}

.bike-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.bike-slider {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bike-slider::-webkit-scrollbar {
  display: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #333;
}

.slider-nav:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.slider-nav.prev {
  left: 0;
  display: flex;
}

.slider-nav.next {
  right: 0;
  display: flex;
}

.slider-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bike-slider .bike-card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;

  background: transparent;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.bike-slider .bike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.bike-slider .bike-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bike-slider .bike-card:hover img {
  transform: scale(1.05);
}

.bike-slider .card-content {
  padding: 20px;
}

.bike-slider .bike-card h3 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #333;
}

.bike-slider .bike-card .model {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.bike-slider .bike-card .details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.bike-slider .bike-card .detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
}

.bike-slider .bike-card .detail-item i {
  color: var(--primary-color);
  font-size: 14px;
}

.bike-slider .bike-card .price-container {
  margin-top: 15px;
}

.bike-slider .bike-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.bike-slider .bike-card .emi {
  font-size: 0.8rem;
  color: #666;
  margin: 5px 0;
}

.bike-slider .bike-card .view-details-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.bike-slider .bike-card .view-details-btn:hover {
  background: #e05d00;
}

.bike-slider .bike-card .status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}

.status-available {
  background-color: #28a745;
}

.status-sold {
  background-color: #dc3545;
}

.status-coming-soon {
  background-color: #ffc107;
  color: #000;
}

.bike-slider .bike-card .view-details-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.bike-slider .bike-card .view-details-btn:hover {
  background: #e05d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.bike-slider .bike-card .view-details-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.bike-slider .bike-card .image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

@media (max-width: 1024px) {
  .bike-slider .bike-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .bike-slider .bike-card {
    flex: 0 0 calc(50% - 10px);
  }

  .bike-slider-container {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .bike-slider .bike-card {
    flex: 0 0 90%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.search-container {
  margin-top: 40px;
  max-width: 760px;
}

.hero-search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Search pill ── */
.hero-search-pill {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 280px;
  max-width: 520px;
  height: 60px;
  padding: 6px 6px 6px 22px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.hero-search-pill:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.7);
}

.hero-search-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0 14px;
  min-width: 0;
}
.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.hero-search-filter {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  flex-shrink: 0;
}
.hero-search-filter svg {
  width: 20px;
  height: 20px;
}
.hero-search-filter:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── Hero brand quick-filter ── */
.hero-brands {
  margin-top: 20px;
}

.hero-brands-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.hero-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 600px) {
  .hero-brands-row {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hero-brands-row::-webkit-scrollbar {
    display: none;
  }
  .hero-brand-pill {
    flex-shrink: 0;
  }
}

.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.22s,
    transform 0.22s,
    border-color 0.22s;
}

.hero-brand-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

.hero-brand-pill span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-brand-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* ── Discover Collection button ── */
.hero-discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 6px 6px 6px 24px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.hero-discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-discover-arrow {
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.hero-discover-btn:hover .hero-discover-arrow {
  transform: translateX(3px);
}
.hero-discover-arrow svg {
  width: 18px;
  height: 18px;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.85) 60%,
      rgba(0, 0, 0, 0.95) 100%
    ),
    url("https://images.overdrive.in/wp-content/odgallery/2018/06/42636_2018%20Ducati%20Panigale%20V4-2018-022.avif");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-color);
  overflow-x: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 40%);
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.floating-buttons {
  bottom: 70px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--primary-color, #a32919);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.btn.secondary {
  background: #f5f7fb;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .slider-dots {
    bottom: 20px;
  }

  .floating-buttons {
    bottom: 60px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 96vh;
  min-height: 600px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rectangle {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    50% 50% at 77% 49%,
    rgba(48, 46, 46, 1) 0%,
    rgba(1, 1, 1, 0) 100%
  );
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: #000;
}

.navbar.scrolled {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 5%;
}

.navbar.scrolled .nav-links a {
  color: black;
}

@media (max-width: 992px) {
  .navbar.past-hero {
    background: #000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  .navbar.past-hero .nav-links a,
  .navbar.past-hero .mobile-menu-toggle,
  .navbar.past-hero .logo-link {
    color: #fff;
  }
  .navbar.past-hero .mobile-menu-toggle i {
    color: #fff;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    color 0.3s,
    opacity 0.3s;
  padding: 5px 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links li {
  transition: transform 0.3s ease;
}

.nav-links li:hover {
  transform: translateY(-3px);
}

.login-btn button {
  background-color: var(--secondary-color);
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  padding: 8px 25px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.login-btn button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
  z-index: -1;
}

.login-btn button:hover::before {
  left: 100%;
}

.login-btn button:hover {
  background-color: var(--primary-color);
}

.hero-content {
  position: relative;
  z-index: 5;
  margin-top: 5%;
  padding: 0 5%;
  max-width: 1200px;
  margin-left: 90px;
  margin-right: auto;
  text-align: left;
  height: 100%;
  align-items: start;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.hero-line {
  display: block;
  background: linear-gradient(
    188deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  opacity: 0;
  transform: translateY(2 0px);
  animation: fadeInUp 2.8s ease forwards;
}

.hero-line.highlight {
  color: var(--primary-color);
  background: linear-gradient(188deg, var(--primary-color) 0%, #ff6b4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5rem;
  font-weight: 700;
  margin-top: -15px;
}

.hero-line.subtitle {
  color: var(--primary-color);
  background: white;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6rem;
  font-weight: 100;
}

@media only screen and (max-width: 768px) {
  .hero-line {
    display: block;
    background: linear-gradient(
      188deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.7) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
    opacity: 0;
    transform: translateY(20px);

    animation: fadeInUp 2.8s ease forwards;
    font-size: 2rem;
    text-align: center;
  }

  .hero-line.highlight {
    font-size: 5rem;
    font-weight: 700;
    margin-top: -10px;
    background: linear-gradient(188deg, var(--primary-color) 0%, #ff6b4a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }

  .hero-line.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: -10px;
    margin-left: 0;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-line.highlight {
  animation:
    fadeInUp 0.8s ease 0.3s forwards,
    pulse 2s ease-in-out 2s infinite;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-line.highlight {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-line.highlight {
    font-size: 3rem;
  }
}

.cta-button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 28px;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #c23320;
}

@keyframes slideBikes {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

section {
  padding: 80px 5%;
  color: white;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: black;
}

/* ══════════════════════════════════════════════
   Trust / Google Reviews Section
   ══════════════════════════════════════════════ */
.trust-section {
  padding: 60px 5% 40px;
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.trust-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-google-logo {
  width: 38px;
  height: 38px;
}
.trust-rating-number {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #ea4335;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
  font-size: 18px;
}

.trust-card {
  width: 100%;
  max-width: 1080px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  padding: 36px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trust-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}
.trust-count {
  color: #0f172a;
}
.trust-highlight {
  color: #2563eb;
}

.trust-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
  align-items: center;
}
.trust-avatars img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #f97316;
  object-fit: cover;
  background: #fff;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    z-index 0s;
  position: relative;
}
.trust-avatars img:first-child {
  margin-left: 0;
}
.trust-avatars img:hover {
  transform: translateY(-4px) scale(1.08);
  z-index: 2;
}

.trust-text {
  text-align: left;
}
.trust-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.trust-subtitle {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

.trust-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f97316;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}
.trust-cta:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
}

@media (max-width: 768px) {
  .trust-section {
    padding: 40px 4% 30px;
    gap: 20px;
  }
  .trust-card {
    padding: 26px 22px;
    gap: 18px;
  }
  .trust-body {
    flex-direction: column;
    gap: 16px;
  }
  .trust-text {
    text-align: center;
  }
  .trust-avatars img {
    width: 48px;
    height: 48px;
    margin-left: -10px;
  }
  .trust-cta {
    padding: 12px 28px;
    font-size: 14px;
  }
  .trust-google-logo {
    width: 32px;
    height: 32px;
  }
  .trust-rating-number {
    font-size: 26px;
  }
  .trust-stars {
    font-size: 16px;
  }
}

.brands-section {
  background: white;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: white;
  z-index: 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-card {
  background: rgba(254, 169, 23, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.brand-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1) invert(0);
  transition: all 0.3s ease;
}

.brand-card h3 {
  font-size: 1.1rem;
  margin: 0;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-card h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-card h3 {
    font-size: 0.85rem;
  }
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.process-sections {
  background-color: white;
  padding: 80px 5%;
}

.process-section {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.process-section:last-child {
  margin-bottom: 0;
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-header h2 {
  font-size: 2rem;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto;
}

.process-content {
  width: 100%;
}

.process-content p {
  color: rgba(5, 5, 5, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-step {
  flex: 1;
  width: 280px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.step-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  background: #0f172a;
  color: #ffffff;
  font-size: 36px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.process-step:hover .step-icon {
  transform: scale(1.08) rotate(-6deg);
  background: var(--primary-color, #b91c1c);
}

.process-step h3 {
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
  margin: auto;
  margin-top: 20px;
  letter-spacing: 1px;
  text-align: center;
}

.process-step p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .process-sections {
    padding: 60px 5%;
  }

  .process-section {
    margin-bottom: 60px;
  }

  .process-header h2 {
    font-size: 1.6rem;
  }

  .process-content p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .process-step {
    min-width: 80%;
    padding: 25px;
  }
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.inventory-section {
  background-color: #ffffff;
}

.stats-section {
  background: none;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 80%;
  height: 200%;
  background: none;
  z-index: 0;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  flex: 1;
  min-width: 100px;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.stat-image {
  width: 100%;
  align-items: center;
}

.stat-image img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.services-section {
  background-color: white;
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.services-section h2 {
  color: var(--primary-color);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 0;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 260px;
  min-width: 220px;
  padding: 28px 20px;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  min-height: 260px;
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s;
  align-items: center;
}

.service-card:hover i {
  transform: rotate(15deg) scale(1.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  color: rgb(0, 0, 0);
}

.service-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 12px;
  text-align: justify;
  flex: 1 1 auto;
}

.service-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s;
  margin-top: 12px;
}

.service-card a:hover {
  color: #ff6b4a;
}

.styles-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffaa17 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.styles-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;

  z-index: 0;
}

.styles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.style-card {
  flex: 1;
  min-width: 220px;
  max-width: 100px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.style-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.style-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.style-card:hover img {
  transform: scale(1.05);
}

.style-content {
  padding: 20px;
}

.style-content h3 {
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: white;
}

.style-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.style-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.style-content a:hover {
  color: #ff6b4a;
}

@media (max-width: 768px) {
  .stats-container {
    display: none;
  }

  .view-btn {
    text-align: center;
  }

  .styles-container {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
  }

  .styles-container-mobile {
    display: flex;
    transition: transform 0.3s ease;
    gap: 0;
  }

  .style-card-link {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .style-card {
    width: 80%;
    margin: 0 auto;
    height: 380px;
    display: flex;
    flex-direction: column;
  }

  .style-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
  }

  .style-content {
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
  }

  .style-content h3 {
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: white;
    text-align: center;
  }

  .style-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .style-content span {
    margin-top: auto;
  }

  .carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
  }

  .carousel-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-arrow:hover {
    background: var(--primary-color);
  }

  .carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .carousel-dots {
    display: flex;
    gap: 8px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-dot.active {
    background: white;
    transform: scale(1.2);
  }
}

@media (min-width: 769px) {
  .styles-container-mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .carousel-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .stat-card {
    min-width: 150px;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .style-card {
    min-width: 80%;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 260px;
    min-width: 320px;
    padding: 28px 20px;
    background: transparent;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    min-height: 260px;
    scroll-snap-align: start;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  margin-bottom: 0px;
}

.section-subtitle {
  font-size: 1rem;
  color: black;
  margin-bottom: 50px;
  max-width: 900px;
  z-index: 1;
  text-align: center;
}

.testimonials-section {
  background-color: white;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 0;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
  color: black;
}

.testimonials-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b4a);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: -1;
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.user-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  margin-right: 20px;
  transition: all 0.3s ease;
}

.testimonial:hover .user-avatar {
  transform: scale(1.1);
  border-color: rgba(163, 41, 25, 0.5);
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  margin: 0 0 5px 0;
}

.user-location {
  color: black;
  font-size: 0.9rem;
  margin: 0;
}

.rating {
  display: flex;
  margin: 5px 0 0 0;
}

.rating i {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-right: 3px;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.quote {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  color: black;
  position: relative;
  padding-left: 20px;
}

.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), #ff6b4a);
}

.filters-container {
  position: relative;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.filter-btn.active i {
  transform: rotate(180deg);
}

.filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  display: none;
}

.filter-dropdown.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.range-inputs input {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
}

.price-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price-preset {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.price-preset.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-option {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.filter-option.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.slider-container {
  padding: 15px 0;
}

input[type="range"] {
  width: 50%;
  margin: 10px 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.year-values,
.km-values {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: white;
}

.section-header {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.section-header h2 {
  flex-direction: column;
  align-items: center;
  color: black;
  gap: 15px;
  z-index: 1;
}

#filtered-count {
  font-size: 1.2rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .filters-container {
    position: relative;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .filter-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
  }

  .filter-btn.active i {
    transform: rotate(180deg);
  }

  .filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    display: none;
  }

  .filter-dropdown.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .price-range {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .range-inputs input {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
  }

  .price-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .price-preset {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
  }

  .price-preset.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-option {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
  }

  .filter-option.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .slider-container {
    padding: 15px 0;
  }

  input[type="range"] {
    width: 100%;
    margin: 10px 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
  }

  .year-values,
  .km-values {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: white;
  }

  .section-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .section-subtitle {
    text-align: justify;
    color: black;
  }

  #filtered-count {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonial-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.social-proof {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.testimonial-slider {
  display: block;
  width: 100%;
}

.testimonial-slide {
  display: none;

  gap: 24px;
  justify-content: center;
  align-items: stretch;
  padding: 10px 0 30px;
}

.testimonial-slide .testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-controls button {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

.testimonial-controls button:hover {
  background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 899px) {
  .testimonial-slide {
    padding: 0 8px 20px;
  }

  .testimonial-slide .testimonial {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.star.selected i,
.star-rating .star.selected i {
  color: #ffb400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial {
  animation: fadeIn 0.6s ease forwards;
}

.testimonial:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial:nth-child(2) {
  animation-delay: 0.3s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.5s;
}

.style-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.style-card {
  cursor: pointer;
}

.footer {
  background-color: var(--text-color);
  color: black;
  padding: 60px 5% 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 100%;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: black;
}

.footer-section p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--light-gray);
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.85) 60%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 5%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: #f2f0ef;
  color: #000;
  z-index: 10000;
  transition: right 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  padding: 22px 18px 120px 18px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  position: absolute;
  left: 18px;
  top: 18px;
  background: none;
  border: none;
  color: black;
  font-size: 1.9rem;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu .nav-links li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #000;
}

.mobile-menu .nav-links a {
  display: block;
  padding: 20px 10px;
  color: #000;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.mobile-menu .nav-links a .fa,
.mobile-menu .nav-links a i {
  color: #ffb000;
  margin-right: 12px;
  width: 22px;
}

@media (max-width: 900px) {
  body:not(.index-page) .navbar {
    background-color: #ff6b00;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 1000;
  }
}

body:not(.index-page) .navbar {
  background-color: #ff6b00;

  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.mobile-menu .login-btn {
  margin-top: 18px;
  width: 100%;
}

.mobile-menu .contact-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 260px;
  text-align: right;
  color: #000;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.mobile-menu .contact-bottom .phone {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #000;
}

.mobile-menu .contact-bottom .phone i {
  color: #ffb000;
  font-size: 1.1rem;
}

.mobile-menu .contact-bottom .email i {
  color: #ffb000;
  font-size: 1.05rem;
}

.mobile-menu .contact-bottom .small-note {
  font-size: 0.88rem;
  color: #9ea0a3;
}

@media only screen and (max-width: 768px) {
  .hero-section {
    padding-bottom: 50px;
  }

  .hero-content {
    margin-top: 40%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 20px;
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-line {
    font-size: 2rem;
  }

  .hero-line.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-left: 0;
  }

  .search-container {
    margin: 28px auto 0;
    width: 100%;
    max-width: 600px;
  }
  .hero-search-form {
    flex-direction: column;
    gap: 12px;
  }
  .hero-search-pill,
  .hero-discover-btn {
    width: 100%;
    max-width: 100%;
    height: 56px;
  }
  .hero-discover-btn {
    justify-content: space-between;
  }

  .navbar {
    padding: 15px;
  }

  .logo-img {
    width: 60px;
  }

  .floating-buttons {
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-line.subtitle {
    font-size: 1rem;
  }

  .hero-search-input {
    font-size: 14px;
  }
  .hero-search-pill {
    padding-left: 18px;
  }
  .hero-discover-btn {
    font-size: 14px;
    padding-left: 20px;
  }
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 15px 5%;
    background-color: black;
  }

  .nav-links,
  .login-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
    transform: none;
  }

  .bike-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .sell-section {
    flex-direction: column;
    gap: 30px;
  }

  .sell-content h2 {
    text-align: center;
  }

  .sell-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .sell-steps {
    align-items: center;
  }

  .sell-cta {
    display: flex;
    justify-content: center;
  }
}

.logo-img {
  width: 60px;
}

@media (max-width: 768px) {
  .logo-img {
    width: 50px;
  }
}

@media (max-width: 768px) {
  @keyframes slideBikes {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-150%);
    }
  }

  section {
    padding: 60px 5%;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .testimonial {
    min-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .bike-card {
    height: 500px;
  }

  .bike-card img {
    height: 180px;
  }

  .testimonial {
    padding: 30px 20px;
  }

  .user-avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .user-name {
    font-size: 1rem;
  }

  .user-location {
    font-size: 0.8rem;
  }

  .quote {
    font-size: 0.9rem;
  }
}

.additional-info-section {
  padding: 60px 15%;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(15, 15, 15, 0.04);
  align-items: center;
  display: flex;
  flex-direction: column;
}

.additional-info-section .section-header {
  text-align: left;
  margin-bottom: 18px;
}

.additional-info-section h2 {
  color: var(--secondary-color, #100f0f);
  font-size: 2.4rem;
  margin: 0 0 6px;
}

.additional-info-section .section-subtitle {
  color: var(--light-gray, #a9a9a9);
  display: block;
  margin-bottom: 12px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

.why-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(16, 15, 15, 0.04);
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.why-card h3 {
  color: var(--primary-color, #a82a0e);
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.why-card p {
  color: var(--dark-gray, #464646);
  margin: 0;
  line-height: 1.5;
}

.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(
    180deg,
    rgba(162, 41, 27, 0.08),
    rgba(162, 41, 27, 0.04)
  );
  color: var(--primary-color, #a32919);
  font-size: 22px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.why-card:hover .why-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 30px rgba(16, 15, 15, 0.06);
}

.why-card {
  transition:
    transform 260ms cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 260ms ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(16, 15, 15, 0.08);
}

@media (max-width: 1000px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .additional-info-section {
    padding: 28px 5%;
  }

  .why-card .why-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .additional-info-section h2 {
    font-size: 1.4rem;
  }

  .why-card h3 {
    font-size: 1rem;
  }
}

.faq-section {
  padding: 48px 5%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.faq-section .section-header h2 {
  margin-bottom: 8px;
}

.faq-list {
  max-width: 1100px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(900px, 1fr));
  gap: 12px 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 8px 22px rgba(16, 15, 15, 0.04);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(16, 15, 15, 0.06);
}

.faq-question {
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--secondary-color);
}

.faq-question::after {
  content: "\25BE";
  font-size: 14px;
  transition: transform 200ms ease;
  color: var(--dark-gray, #464646);
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 8px;
  color: #444;
  line-height: 1.45;
  display: block;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 260ms ease,
    opacity 200ms ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 420px;

  opacity: 1;
}

@media (max-width: 720px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 28px 6%;
  }
}

/* ===== Stats Bar (under hero) ===== */
.stats-bar {
  width: 100%;
  background-color: #f4f5f7;
  padding: 36px 5%;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.stat-plus,
.stat-star,
.stat-unit {
  font-size: 0.7em;
  color: #ff6b00;
  font-weight: 700;
}

.stat-star {
  font-size: 0.85em;
  color: #f5a623;
}

.stat-unit {
  font-size: 0.5em;
  margin-left: 2px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .stats-bar {
    padding: 28px 5%;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .stat-card {
    border-right: none;
  }
  .stat-card:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
  }
}

/* ===== Trust Badge Strip (above bike listing) ===== */
.trust-badges {
  width: 100%;
  background-color: #fafaf7;
  padding: 32px 5%;
  margin: 8px 0;
}

.trust-badges-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

.badge-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(163, 41, 25, 0.18);
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.badge-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.8rem;
  color: #6b6b6b;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .trust-badges-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 14px;
  }
}

@media (max-width: 600px) {
  .trust-badges {
    padding: 24px 5%;
  }
  .trust-badges-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .badge-label {
    font-size: 0.88rem;
  }
  .badge-sub {
    font-size: 0.75rem;
  }
}

/* ===== Breadcrumb bar (city pages) ===== */
.breadcrumb-bar {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 5%;
  font-size: 0.88rem;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #555;
}

.breadcrumb-inner a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumb-inner a:hover {
  color: #ff6b00;
  text-decoration: underline;
}

.breadcrumb-inner [aria-current="page"] {
  color: #1a1a1a;
  font-weight: 600;
}

/* ===== City localizer (Areas We Serve + Showroom) ===== */
.city-localizer {
  width: 100%;
  padding: 48px 5%;
  background: linear-gradient(180deg, #fdfaf6 0%, #fdf3ec 100%);
}

.city-localizer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
}

.localizer-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.25;
}

.localizer-text p {
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 18px;
}

.locality-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.locality-pills li {
  background: #fff;
  border: 1px solid rgba(163, 41, 25, 0.18);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.localizer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.localizer-cta .btn-primary,
.localizer-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.localizer-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  color: #fff;
  box-shadow: 0 4px 12px rgba(163, 41, 25, 0.22);
}

.localizer-cta .btn-secondary {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.localizer-cta .btn-primary:hover,
.localizer-cta .btn-secondary:hover {
  transform: translateY(-2px);
}

.localizer-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.localizer-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.localizer-card-head i {
  font-size: 1.2rem;
}

.localizer-address {
  font-style: normal;
  color: #2a2a2a;
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0 0 14px;
}

.localizer-hours {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 900px) {
  .city-localizer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .city-localizer {
    padding: 32px 5%;
  }
}

/* ===== Muzaffarpur FAQ section ===== */
.muz-faq {
  width: 100%;
  padding: 48px 5%;
  background-color: #fafaf7;
}

.muz-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.muz-faq .section-header {
  margin-bottom: 28px;
}

.muz-faq .section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a1a;
  margin: 0 0 10px;
}

.muz-faq .section-subtitle {
  color: #555;
  font-size: 1rem;
}

.muz-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.muz-faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 0;
  transition: box-shadow 0.18s ease;
}

.muz-faq-item[open] {
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
}

.muz-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.muz-faq-item summary::-webkit-details-marker {
  display: none;
}

.muz-faq-item summary::after {
  content: "+";
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease;
  line-height: 1;
}

.muz-faq-item[open] summary::after {
  content: "−";
}

.muz-faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.65;
}
