/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* White & Black Theme Colors */
  --primary-white: #FFFFFF;
  --primary-black: #000000;
  --gray-dark: #1A1A1A;
  --gray-medium: #666666;
  --gray-light: #F5F5F5;
  --gray-bg: #FAFAFA;
  
  /* Accent - Enhanced red for brand identity */
  --accent-red: #E60000;
  --accent-red-light: #FFEBEE;
  --accent-dark: #222222;
  
  /* Animation Variables */
  --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-black: 0 2px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--primary-black);
  background-color: var(--primary-white);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-black {
  color: rgb(0, 0, 0) !important;
}

.text-white {
  color: var(--primary-white) !important;
}

/* Scroll Progress - Enhanced with red accent */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(230, 0, 0, 0.1);
  z-index: 1000;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-black) 0%, var(--accent-red) 100%);
  transition: width 0.1s ease;
}

/* Header Styles - White Theme */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;  /* transparent at top */
  backdrop-filter: none;    /* disable blur at top */
  transition: var(--transition-smooth);
  padding: 20px 0;
  border-bottom: 1px solid transparent; /* hide border at top */
}

.header.scrolled {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  z-index: 1001;
}

.logo {
  height: 70px;
  width: auto;
  filter: brightness(-10); /* Makes black logo */
  transition: var(--transition-fast);
}

.header.scrolled .logo {
  height: 50px;
}

.category-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.category-nav li:not(.nav-icons) {
  position: relative;
}

.nav-link {
  color: var(--primary-black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-red);
  font-weight: 700;
}

.nav-link:hover {
  color:rgb(255, 0, 0);
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icon {
  color: var(--primary-black);
  font-size: 18px;
  transition: var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.nav-icon:hover {
  color: var(--accent-red);
  transform: translateY(-2px);
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-red);
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language {
  color: var(--primary-black);
  font-weight: 700;
  border: 2px solid var(--primary-black);
  padding: 5px 15px;
  border-radius: 20px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.language:hover {
  background: var(--primary-black);
  color: var(--primary-white);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-black);
  transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Enhanced gradient background */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--primary-white);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-banner2.jpg') center center/cover no-repeat;
}

.hero-overlay-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(230,0,0,0.02)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 120px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-red);
  color: var(--primary-white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  border: 1px solid var(--accent-red);
  opacity: 1;
  transform: translateY(0);
}

.product-name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 1;
  transform: translateY(0);
}

.product-version {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: var(--gray-medium);
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-black {
  background: var(--primary-black);
  color: var(--primary-white);
  border: none;
}

.btn-black::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;
}

.btn-black:hover::before {
  left: 100%;
}

.btn-black:hover {
  background: var(--gray-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-black);
}

.btn-red {
  background: var(--accent-red);
  color: var(--primary-white);
  border: 2px solid var(--accent-red);
}

.btn-red:hover {
  background: var(--primary-white);
  color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-hero i {
  transition: transform 0.3s ease;
}

.btn-hero:hover i {
  transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray-medium);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--gray-medium);
  border-radius: 15px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--primary-black);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { top: 10px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

/* Racing Section - Enhanced background */
.racing-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-white) 0%, var(--gray-light) 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-medium);
  margin-bottom: 15px;
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.btn-noise {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--primary-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  border: 2px solid var(--primary-black);
  transition: var(--transition-smooth);
  opacity: 1;
  transform: translateY(0);
}

.btn-noise:hover {
  background: var(--primary-black);
  color: var(--primary-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.racing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-staggered .animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-smooth);
}

.racing-card {
  position: relative;
}

.card-content {
  background: var(--primary-white);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
}

.card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(45deg, var(--accent-red), var(--primary-black));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
}

.card-content:hover::before {
  opacity: 1;
}

.card-content:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.card-content:hover .card-img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(230,0,0,0.8), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.card-content:hover .image-overlay {
  opacity: 1;
}

.card-text {
  padding: 25px;
}

.card-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-black);
}

.card-text p {
  color: var(--gray-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.card-link:hover {
  gap: 15px;
  color: var(--accent-red);
}

/* Suomy Crew Section - Enhanced background */
.suomy-crew-section {
  padding: 30px 0;
  background: rgba(236, 238, 195, 0.826);
}

.hashtag-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
}

.riders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.rider-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 400px;
  opacity: 1;
  transform: scale(1);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  background: var(--primary-white);
}

.rider-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.rider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.rider-card:hover .rider-img {
  transform: scale(1.1);
}

.rider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(230,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.rider-card:hover .rider-overlay {
  opacity: 1;
}

.rider-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-white);
}

.rider-info p {
  color: var(--gray-light);
  font-size: 14px;
}

.rider-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--primary-white);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-footer {
  text-align: center;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--primary-black);
  color: var(--primary-white);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.btn-discover:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-black);
}

.btn-discover i {
  transition: transform 0.3s ease;
}

.btn-discover:hover i {
  transform: translateX(5px);
}

/* Gallery Section - Enhanced background */
.gallery-section {
  padding: 60px 0;
  background: rgba(234, 236, 201, 0.733);
}

.gallery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gallery-text h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-medium);
  margin-bottom: 10px;
  opacity: 1;
  transform: translateX(0);
}

.gallery-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--primary-black);
  opacity: 1;
  transform: translateX(0);
}

.gallery-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 30px;
  max-width: 400px;
  opacity: 1;
  transform: translateX(0);
}

.btn-pictures {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 40px;
  border: 2px solid var(--primary-black);
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  opacity: 1;
  transform: translateX(0);
}

.btn-pictures:hover {
  background: var(--accent-red);
  color: var(--primary-white);
  border-color: var(--accent-red);
  transform: translateY(-3px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  height: 400px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(230,0,0,0.9), transparent);
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-white);
}

.gallery-caption p {
  color: var(--gray-light);
  font-size: 14px;
}

/* Tech Specs Section - Enhanced background */
.tech-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-bg) 0%, var(--gray-light) 100%);
}

.tech-header {
  text-align: center;
  margin-bottom: 60px;
}

.tech-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 1;
  transform: translateY(0);
}

.tech-header p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  opacity: 1;
  transform: translateY(0);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tech-card {
  background: var(--primary-white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 1;
  transform: translateY(0);
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-red);
}

.tech-icon {
  font-size: 40px;
  color: var(--accent-red);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.tech-card:hover .tech-icon {
  transform: scale(1.1);
}

.tech-info h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-black);
}

.tech-info p {
  color: var(--gray-medium);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Newsletter Section - Enhanced background */
.newsletter-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary-white) 0%, var(--accent-red-light) 100%);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.newsletter-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  opacity: 1;
  transform: translateY(0);
}

.newsletter-subtitle {
  color: var(--gray-medium);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transform: translateY(0);
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 20px 25px;
  background: var(--primary-white);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--primary-black);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-red);
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 2px;
  background: var(--accent-red);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
}

.newsletter-form input:focus ~ .input-highlight {
  opacity: 1;
}

.submit-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: var(--accent-red);
  color: var(--primary-white);
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  background: var(--primary-black);
  transform: translateY(-50%) scale(1.05);
}

/* News Section - Enhanced background */
.news-section {
  padding: 60px 0;
  background: rgb(210, 200, 181);
}

.news-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-red);
  color: var(--primary-white);
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-top: 20px;
  opacity: 1;
  transform: scale(1);
}

.news-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.news-card {
  background: var(--primary-white);
  padding: 30px;
  border-radius: 15px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  opacity: 1;
  transform: translateY(0);
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-lg);
}

.news-date {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-medium);
  margin-bottom: 15px;
}

.news-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.news-excerpt {
  color: var(--gray-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.read-more:hover {
  gap: 15px;
  color: var(--accent-red);
}

.btn-all-news {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  color: var(--primary-black);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 30px;
  border: 2px solid var(--primary-black);
  transition: var(--transition-smooth);
}

.btn-all-news:hover {
  background: var(--accent-red);
  color: var(--primary-white);
  border-color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-all-news i {
  transition: transform 0.3s ease;
}

.btn-all-news:hover i {
  transform: translateX(5px);
}

/* Footer */
.footer {
  background: var(--primary-black);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,0,0,0.3), transparent);
}

.footer-top {
  text-align: center;
  margin-bottom: 60px;
}

.footer-logo {
  height: 50px;
  width: auto;
  /* filter: brightness(0) invert(1); Makes logo white */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--primary-white);
  opacity: 1;
  transform: translateY(0);
}

.company-info p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-contact i {
  color: var(--accent-red);
  width: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-red);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icons a:hover {
  background: var(--accent-red);
  color: var(--primary-white);
  transform: translateY(-3px) rotate(5deg);
}

.year-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.year-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.year-link:hover,
.year-link.active {
  color: var(--accent-red);
}

.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.payment-icons i {
  transition: var(--transition-fast);
}

.payment-icons i:hover {
  color: var(--accent-red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-links {
  margin-bottom: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 15px;
  transition: var(--transition-fast);
  font-size: 14px;
}

.footer-bottom a:hover {
  color: var(--accent-red);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 10px;
}

/* Back to Top Button - Red accent */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-red);
  color: var(--primary-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-black);
  transform: translateY(-5px) scale(1.1);
}

/* Animation Classes - Default to visible */
.animate-on-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: var(--transition-smooth);
}

.animate-on-scroll.animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .gallery-grid {
      height: 300px;
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
      display: flex;
  }
  
  .category-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: var(--primary-white);
      flex-direction: column;
      justify-content: center;
      gap: 30px;
      padding: 80px 40px;
      transition: var(--transition-smooth);
      z-index: 1000;
      box-shadow: var(--shadow-lg);
  }
  
  .category-nav.active {
      right: 0;
  }
  
  .nav-icons {
      margin-top: 30px;
  }
  
  .hero-actions {
      flex-direction: column;
      align-items: center;
  }
  
  .btn-hero {
      width: 100%;
      max-width: 300px;
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
      height: 70vh;
  }
  
  .product-name {
      font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .product-version {
      font-size: clamp(0.9rem, 2vw, 1.2rem);
  }
  
  .racing-grid,
  .riders-grid,
  .news-grid,
  .tech-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr;
      height: auto;
  }
  
  .gallery-item.large {
      height: 300px;
  }
  
  .gallery-item {
      height: 200px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  section {
      padding: 60px 0;
  }
  
  .section-title,
  .hashtag-title {
      font-size: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 576px) {
  .container {
      padding: 0 15px;
  }
  
  .btn-hero,
  .btn-discover,
  .btn-all-news,
  .btn-pictures {
      padding: 15px 25px;
      font-size: 13px;
  }
  
  .newsletter-form input {
      padding: 18px 20px;
      font-size: 13px;
  }
  
  .submit-btn {
      padding: 12px 20px;
      font-size: 13px;
  }
  
  .footer-bottom .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }
  
  .footer-bottom a {
      margin: 0;
  }
  
  .footer-bottom span {
      display: none;
  }
  
  .back-to-top {
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
      font-size: 16px;
  }
}
/* Main Dropdown */
.dropdown {
  position: relative;
}

/* .dropdown-menu {
  display: none;
  position: absolute;
  background: #000;
  padding: 10px 0;
  list-style: none;
  min-width: 200px;
  border-radius: 6px;
  z-index: 9999;
} */

/* .dropdown:hover .dropdown-menu {
  display: block;
} */

/* Submenu */
/* .dropdown-submenu {
  position: relative;
}

.dropdown-submenu-items {
  display: none;
  position: absolute;
  left: 200px;
  top: 0;
  background: #111;
  padding: 10px 0;
  list-style: none;
  min-width: 200px;
  border-radius: 6px;
}

.dropdown-submenu:hover .dropdown-submenu-items {
  display: block;
} */

/* Links */
/* .dropdown-menu a, 
.dropdown-submenu-items a {
  padding: 10px 20px;
  color: white;
  display: block;
  text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-submenu-items a:hover {
  background: #444;
} */
.cinematic-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--primary-white);
  overflow: hidden;
}

.cinematic-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(230, 0, 0, 0.1) 0%, transparent 70%),
              radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: floatParticles 20s linear infinite;
}

@keyframes floatParticles {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-100px) translateX(100px); }
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.product-badge {
  display: inline-block;
  background: var(--accent-red);
  color: var(--primary-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  animation: pulseGlow 2s infinite alternate;
}

.section-subtitle p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Premium Showcase */
.premium-showcase {
  position: relative;
  z-index: 1;
}

/* Helmet Display */
.helmet-display-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  margin-bottom: 80px;
}

/* 360° Rotation Indicator */
.rotation-indicator {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  z-index: 10;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.rotation-circle {
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 3D Container */
.helmet-3d-container {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.helmet-model {
  position: relative;
  height: 500px;
  margin-bottom: 40px;
}

.model-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.model-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-view.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.helmet-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s ease;
}

.model-view.active .helmet-main-image {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.helmet-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(230, 0, 0, 0.1) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.model-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
  pointer-events: none;
}

.overlay-content {
  display: flex;
  gap: 10px;
}

.feature-tag {
  background: rgba(230, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: var(--primary-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(230, 0, 0, 0.3);
}

/* Interactive Hotspots */
.hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotspot {
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.hotspot-marker {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.ring-2 {
  animation-delay: 1s;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.center-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
}

.hotspot-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(230, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot-tooltip h5 {
  color: var(--accent-red);
  font-size: 14px;
  margin-bottom: 5px;
}

.hotspot-tooltip p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* View Controls */
.view-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.view-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.view-btn.active,
.view-btn:hover {
  background: var(--accent-red);
  color: var(--primary-white);
  border-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(230, 0, 0, 0.3);
}

/* Quick View Panel */
.quick-view-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-white);
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 0, 0, 0.2);
  color: var(--accent-red);
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(230, 0, 0, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-size: 16px;
}

.feature-content h5 {
  color: var(--primary-white);
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.4;
}

.panel-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-explore {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, var(--accent-red), #ff3366);
  color: var(--primary-white);
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  justify-content: center;
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
}

/* Featured Products Section */
.featured-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-white) 0%, var(--gray-light) 100%);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.featured-card {
  position: relative;
}

.featured-card .card-content {
  background: var(--primary-white);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.featured-card .card-content:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-red);
}

.featured-card .image-container {
  position: relative;
  height: 250px;
}

.featured-card .product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-red);
  color: var(--primary-white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
}

.featured-card .card-text {
  padding: 25px;
}

.featured-card .product-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.featured-card .product-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-card .product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-black);
}

.featured-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-black);
}

.featured-card p {
  color: var(--gray-medium);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 14px;
}

.featured-card .product-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.featured-card .product-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-medium);
}

.featured-card .product-specs i {
  color: var(--accent-red);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  color: var(--primary-black);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 30px;
  border: 2px solid var(--primary-black);
  transition: var(--transition-smooth);
}

.btn-view-all:hover {
  background: var(--accent-red);
  color: var(--primary-white);
  border-color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Why Choose Suomy Section */
.why-section {
  padding: 60px 0;
  background: var(--primary-white);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-text > p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  margin-bottom: 40px;
  line-height: 1.8;
}

.features-list {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 24px;
  color: var(--accent-red);
  margin-top: 5px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-black);
}

.feature-item p {
  color: var(--gray-medium);
  font-size: 14px;
  line-height: 1.6;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--primary-black);
  color: var(--primary-white);
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.btn-learn-more:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}

.stat-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 12px;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Technology Innovation Section */
.tech-innovation-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-bg) 100%);
}

.tech-features {
  max-width: 800px;
  margin: 60px auto 0;
}

.tech-feature {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: flex-start;
}

.tech-feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tech-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 24px;
  flex-shrink: 0;
}

.tech-feature .feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-black);
}

.tech-feature .feature-content p {
  color: var(--gray-medium);
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .why-image img {
      height: 400px;
  }
  
  .featured-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .featured-grid {
      grid-template-columns: 1fr;
  }
  
  .stat-box {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  
  .tech-feature {
      flex-direction: column;
      text-align: center;
      align-items: center;
  }
  
  .feature-item {
      flex-direction: column;
      text-align: center;
      align-items: center;
  }
}

@media (max-width: 576px) {
  .why-section,
  .featured-section,
  .tech-innovation-section {
      padding: 80px 0;
  }
  
  .stat-box {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      margin-top: 20px;
  }
  
  .why-image img {
      height: 300px;
  }
  
  .btn-view-all,
  .btn-learn-more {
      padding: 15px 25px;
      font-size: 13px;
  }
}
/* Mobile Responsive Styles */
@media (max-width: 992px) {
  /* Adjust header and navigation */
  .mobile-toggle {
    display: flex;
  }
  
  .category-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-white);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 80px 40px;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }
  
  .category-nav.active {
    right: 0;
  }
  
  .nav-icons {
    margin-top: 30px;
  }
  
  /* Hero section adjustments */
  .hero-section {
    height: 70vh;
  }
  
  .product-name {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .product-version {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Team Suomy Section - Horizontal Scroll on Mobile */
  .suomy-crew-section {
    padding: 60px 0;
  }
  
  .riders-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  
  .riders-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari */
  }
  
  .rider-card {
    flex: 0 0 auto;
    width: 280px;
    height: 350px;
    scroll-snap-align: start;
    margin: 0;
  }
  
  .hashtag-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
  }
  
  /* Adjust other sections for mobile */
  .racing-grid,
  .news-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .gallery-item.large {
    height: 300px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-image img {
    height: 400px;
  }
  
  .stat-box {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .tech-features {
    max-width: 100%;
  }
  
  .tech-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title,
  .hashtag-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  /* Team Suomy Section - Smaller cards for very small screens */
  .rider-card {
    width: 250px;
    height: 320px;
  }
  
  .rider-name {
    padding: 15px;
    font-size: 16px;
  }
  
  .suomy-crew-section {
    padding: 40px 0;
  }
  
  /* Adjust buttons */
  .btn-hero,
  .btn-discover,
  .btn-all-news,
  .btn-pictures,
  .btn-view-all,
  .btn-learn-more {
    padding: 15px 25px;
    font-size: 13px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  /* Newsletter form adjustments */
  .newsletter-form input {
    padding: 18px 20px;
    font-size: 13px;
  }
  
  .submit-btn {
    padding: 12px 20px;
    font-size: 13px;
    position: relative;
    top: 10px;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 300px;
    margin-top: 15px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Footer adjustments */
  .footer-bottom .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-bottom a {
    margin: 0;
  }
  
  .footer-bottom span {
    display: none;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  /* Hero section adjustments for very small screens */
  .hero-badge {
    padding: 6px 15px;
    font-size: 10px;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
  
  .mouse {
    width: 25px;
    height: 40px;
  }
  
  /* Adjust card layouts */
  .card-content {
    margin: 0 10px;
  }
  
  .featured-card .card-text,
  .news-card {
    padding: 20px;
  }
  
  .featured-card .product-specs {
    flex-direction: column;
    gap: 8px;
  }
}

/* Add horizontal scroll indicator for Team Suomy section */
@media (max-width: 768px) {
  .suomy-crew-section .container {
    position: relative;
  }
  
  .suomy-crew-section::after {
    content: '← Swipe →';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-medium);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: swipeHint 2s ease-in-out infinite;
    display: none; /* Hide by default, show via JavaScript */
  }
}

@keyframes swipeHint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Fix for horizontal scroll on iOS */
.riders-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
}

@media (max-width: 768px) {
  .riders-grid {
    display: flex;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
  }
}

/* Ensure proper spacing on mobile */
@media (max-width: 768px) {
  .section-footer {
    margin-top: 20px;
  }
  
  .btn-discover {
    margin-top: 20px;
  }
}
.flag-icon {
  font-size: 28px;
  line-height: 1;
  margin-right: 12px;
}
/* Footer Styles - Collapsible for Mobile */
.footer-section {
  margin-bottom: 20px;
}

.footer-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-white);
}

.footer-toggle-icon {
  color: var(--accent-red);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.footer-section-content {
  overflow: hidden;
  transition: height 0.3s ease;
}

/* Desktop - Always show content */
@media (min-width: 769px) {
  .footer-section-header {
      cursor: default;
      pointer-events: none;
      border-bottom: none;
      padding: 0 0 20px 0;
  }
  
  .footer-toggle-icon {
      display: none;
  }
  
  .footer-section-content {
      height: auto !important;
      display: block !important;
  }
}

/* Mobile - Collapsible */
@media (max-width: 768px) {
  .footer-content {
      display: flex;
      flex-direction: column;
      gap: 0;
  }
  
  .footer-left,
  .footer-middle,
  .footer-right {
      width: 100%;
  }
  
  .footer-section-content {
      height: 0;
      padding: 0;
      transition: height 0.3s ease, padding 0.3s ease;
  }
  
  .footer-section-content.active {
      height: auto;
      padding: 15px 0;
  }
  
  .footer-section-content .company-info,
  .footer-section-content .footer-contact,
  .footer-section-content .footer-links,
  .footer-section-content .social-media,
  .footer-section-content .news-archive,
  .footer-section-content .payment-methods {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .footer-section-content.active .company-info,
  .footer-section-content.active .footer-contact,
  .footer-section-content.active .footer-links,
  .footer-section-content.active .social-media,
  .footer-section-content.active .news-archive,
  .footer-section-content.active .payment-methods {
      opacity: 1;
      transform: translateY(0);
  }
  
  .footer-bottom {
      text-align: center;
  }
  
  .footer-bottom .footer-links {
      flex-direction: column;
      gap: 10px;
  }
  
  .footer-bottom span {
      display: none;
  }
}

/* Footer contact links */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact i {
  width: 20px;
  color: var(--accent-red);
}

/* Footer links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-red);
  padding-left: 5px;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
}

/* Year links */
.year-links {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.year-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.year-link:hover,
.year-link.active {
  color: var(--accent-red);
}

/* Payment icons */
.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.payment-icons i {
  transition: color 0.3s ease;
}

.payment-icons i:hover {
  color: var(--accent-red);
}
/* Footer Mobile Fixes */
@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        cursor: pointer;
    }
    
    .footer-section-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        padding: 0;
    }
    
    .footer-section-content.active {
        max-height: 1000px; /* Adjust based on your content */
        padding: 0 0 20px 0;
    }
    
    .footer-toggle-icon {
        transition: transform 0.3s ease;
    }
    
    .footer-section-content.active + .footer-section-header .footer-toggle-icon {
        transform: rotate(180deg);
    }
    
    /* Ensure content is visible when active */
    .footer-section-content.active .company-info,
    .footer-section-content.active .footer-contact,
    .footer-section-content.active .footer-links,
    .footer-section-content.active .social-media,
    .footer-section-content.active .news-archive,
    .footer-section-content.active .payment-methods {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* On desktop, always show content */
    @media (min-width: 769px) {
        .footer-section-header {
            pointer-events: none;
            cursor: default;
            padding: 0 0 20px 0;
        }
        
        .footer-toggle-icon {
            display: none;
        }
        
        .footer-section-content {
            max-height: none !important;
            padding: 0 !important;
            display: block !important;
        }
        
        .footer-section-content .company-info,
        .footer-section-content .footer-contact,
        .footer-section-content .footer-links,
        .footer-section-content .social-media,
        .footer-section-content .news-archive,
        .footer-section-content .payment-methods {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
        }
    }
}
/* Update the existing dropdown CSS - Add these styles */

@media (max-width: 992px) {
  /* Mobile dropdown fixes */
  .dropdown {
    position: static !important;
  }
  
  .dropdown-menu {
    position: relative !important;
    display: none !important;
    background: transparent !important;
    padding-left: 20px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-left: 2px solid var(--accent-red) !important;
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    animation: slideDown 0.3s ease-out forwards;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .dropdown-menu.active {
    display: block !important;
  }
  
  .dropdown-menu a,
  .dropdown-submenu a {
    color: var(--primary-black) !important;
    padding: 12px 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-size: 14px !important;
    display: block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }
  
  .dropdown-menu a:hover,
  .dropdown-submenu a:hover {
    color: var(--accent-red) !important;
    background: rgba(230, 0, 0, 0.05) !important;
    padding-left: 25px !important;
  }
  
  .dropdown-menu a:last-child,
  .dropdown-submenu a:last-child {
    border-bottom: none !important;
  }
  
  .dropdown-submenu {
    position: relative !important;
    display: block !important;
  }
  
  .dropdown-submenu-items {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    background: rgba(0, 0, 0, 0.05) !important;
    margin-left: 20px !important;
    border-radius: 0 !important;
    border-left: 2px solid var(--primary-black) !important;
    display: none !important;
  }
  
  .dropdown-submenu.active .dropdown-submenu-items {
    display: block !important;
  }
  
  /* Mobile menu adjustments */
  .category-nav.active {
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
  }
  
  .category-nav.active .nav-link {
    width: 100% !important;
    padding: 15px 0 !important;
    font-size: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
  
  .category-nav.active .nav-link::after {
    content: '›';
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  
  .category-nav.active .dropdown.active .nav-link::after {
    transform: rotate(90deg);
  }
  
  /* Remove hover effects for mobile */
  .category-nav.active .nav-link:hover::after {
    width: 0 !important;
  }
}

/* Also update the existing dropdown styles for better mobile support */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #000;
  padding: 10px 0;
  list-style: none;
  min-width: 200px;
  border-radius: 6px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-items {
  display: none;
  position: absolute;
  left: 200px;
  top: 0;
  background: #111;
  padding: 10px 0;
  list-style: none;
  min-width: 200px;
  border-radius: 6px;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-submenu:hover .dropdown-submenu-items {
  display: block;
}

/* Links */
.dropdown-menu a, 
.dropdown-submenu-items a {
  padding: 10px 20px;
  color: white;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-submenu-items a:hover {
  background: #444;
  color: var(--accent-red);
}
/* Add to your CSS */
@media (max-width: 992px) {
  .dropdown-submenu > a::after {
    content: '›';
    font-size: 20px;
    float: right;
    transition: transform 0.3s ease;
    margin-left: 10px;
  }
  
  .dropdown-submenu.active > a::after {
    transform: rotate(90deg);
  }
  
  .dropdown-submenu-items {
    animation: slideDown 0.3s ease-out;
  }
  
  .dropdown-submenu-items a {
    font-size: 14px !important;
    padding-left: 35px !important;
    color: var(--gray-medium) !important;
  }
  
  .dropdown-submenu-items a:hover {
    color: var(--accent-red) !important;
    background: rgba(230, 0, 0, 0.05) !important;
  }
}
/* Mobile Dropdown Enhancements */
@media (max-width: 992px) {
  .category-nav.active {
    overflow-y: auto;
    padding-bottom: 100px; /* Extra space for open dropdowns */
  }
  
  .dropdown-menu {
    display: none !important;
    position: static !important; /* Stack vertically in mobile menu */
    background: transparent !important;
    padding: 0 0 0 20px !important; /* Indent for hierarchy */
    border-left: 3px solid var(--accent-red) !important;
    margin: 10px 0 15px 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }
  
  .dropdown-menu.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
  }
  
  .submenu-link {
    display: block !important;
    padding: 12px 0 !important;
    color: var(--primary-black) !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
  }
  
  .submenu-link:hover,
  .submenu-link.active {
    color: var(--accent-red) !important;
    padding-left: 10px !important;
  }
  
  .dropdown-submenu {
    margin: 5px 0;
  }
  
  /* Prevent main nav-link underline in mobile dropdown */
  .category-nav.active .nav-link::after {
    display: none;
  }
  
  /* Add arrow indicator for dropdowns */
  .category-nav.active .dropdown .nav-link::after {
    content: '›' !important;
    float: right;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .category-nav.active .dropdown.active .nav-link::after {
    transform: rotate(90deg);
  }
}