/* Hero Banner */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(245, 245, 245, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-title span {
  color: var(--primary-red);
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--primary-red);
  width: 36px;
  border-radius: 6px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-dark);
  transition: var(--transition);
  z-index: 3;
}

.hero-arrow:hover {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.hero-arrow.prev {
  left: 30px;
}

.hero-arrow.next {
  right: 30px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary-red);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* Bikes Showcase */
.bikes-showcase {
  padding: 80px 0;
}

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bike-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.bike-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.bike-image {
  height: 220px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bike-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.bike-card:hover .bike-image img {
  transform: scale(1.08);
}

.bike-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.bike-info {
  padding: 25px;
}

.bike-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.bike-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.bike-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.bike-actions {
  display: flex;
  gap: 10px;
}

.bike-actions .btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

/* About Preview */
.about-preview {
  padding: 80px 0;
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 span {
  color: var(--primary-red);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-red);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--primary-red);
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Offers Section */
.offers-preview {
  padding: 80px 0;
  background: var(--light-gray);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.offer-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.offer-content {
  padding: 30px;
  flex: 1;
}

.offer-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.offer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.offer-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.offer-image {
  width: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.offer-image img {
  max-width: 100%;
  max-height: 100%;
}

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

  .bikes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .features-grid,
  .bikes-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-title {
    font-size: 32px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    flex-direction: column;
  }

  .offer-image {
    width: 100%;
    height: 180px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hero-arrow.prev {
    left: 15px;
  }

  .hero-arrow.next {
    right: 15px;
  }
}
