/* styles.css */
:root {
  --primary-color: #D81A22;
  /* Honda Red */
  --text-color: #1a1a1a;
  --text-light: #666;
  --bg-color: #f9f9f9;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
  --font-family: 'Inter', sans-serif;
}

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

/* Base Styles - Luxury Update */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: #fdfdfd;
  /* Softer than pure white */
  font-weight: 300;
  /* Lighter body text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  /* Bold headers */
  letter-spacing: -0.5px;
}

/* Header - Modern & Clean */
.site-header {
  background-color: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.site-header a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

/* Hover Effect for Links */
.site-header a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.site-header a:not(.logo):hover::after {
  width: 100%;
}

.site-header a:hover {
  color: var(--primary-color);
}

/* Logo Styles */
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.logo-honda {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.logo-moto {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 2px;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--text-light);
}

/* Layout */
.layout-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}

/* Sidebar */
.filters-sidebar {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: fit-content;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.brand-list label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-color);
  cursor: pointer;
}

.brand-list input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: var(--primary-color);
  width: 16px;
  height: 16px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-inputs input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
}

.btn-primary {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #e65100;
  /* Darker orange */
}

/* Grid Section */
.grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

#result-count {
  font-weight: 600;
  color: var(--text-light);
}

.sort-options select {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
}

.motorcycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  #featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   PREMIUM PRODUCT CARDS
   ======================================== */

/* Card Container */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D81A22 0%, #B01519 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

/* Card Image Container */
.card-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.card-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-image-container::after {
  opacity: 1;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-image-container img {
  transform: scale(1.1);
}

/* Badge (Novità, Km0, etc) */
.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  padding: 0.4rem 1rem;
  background: #D81A22;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(216, 26, 34, 0.3);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Card Content */
.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Brand Label */
.card-brand {
  font-size: 0.8rem;
  font-weight: 600;
  color: #D81A22;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  width: fit-content;
}

.card-brand::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #D81A22;
  transition: width 0.3s ease;
}

.card:hover .card-brand::after {
  width: 100%;
}

/* Title */
.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.card:hover .card-title {
  color: #D81A22;
}

/* Details (Year, KM) */
.card-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.detail-item span {
  font-size: 1.1rem;
}

/* Description */
.card-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price */
.card-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  margin-top: auto;
}

.financing {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Hover CTA Overlay */
.card-hover-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 50%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  gap: 1rem;
  justify-content: center;
  z-index: 20;
}

.card:hover .card-hover-cta {
  transform: translateY(0);
}

.btn-card-cta {
  padding: 0.75rem 1.5rem;
  background: white;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-card-cta:hover {
  background: #D81A22;
  color: white;
  transform: scale(1.05);
}

.btn-card-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

.btn-card-outline:hover {
  background: white;
  color: #1a1a1a;
}

/* Loading Skeleton */
.card.loading {
  pointer-events: none;
}

.card.loading .card-image-container,
.card.loading .card-title,
.card.loading .card-price {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  color: transparent;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Responsive Adjustments for Cards */
@media (max-width: 768px) {
  .card-image-container {
    height: 200px;
  }

  .card-content {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-price {
    font-size: 1.5rem;
  }

  .card-details {
    gap: 1rem;
    padding: 0.75rem 0;
  }
}

/* Footer */
/* Footer */
.site-footer {
  margin-top: 4rem;
  background: #111;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-top {
  text-align: center;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .logo-ptm {
  font-size: 3rem;
}

.footer-logo .logo-moto {
  font-size: 1.5rem;
  color: #fff;
}

.footer-subtitle {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 1rem;
  text-align: center;
}

.footer-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-color);
}

.footer-col .spacer {
  height: 1rem;
}

.footer-col p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-col strong {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

/* Admin Link - Discreto ma accessibile */
.admin-link {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.admin-link:hover {
  opacity: 1;
  color: #D81A22;
  border-color: #D81A22;
  background: rgba(216, 26, 34, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-left,
  .nav-right {
    gap: 1rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .layout-container {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    display: none;
    /* Hide filters on mobile for now */
  }
}

/* Valuation Page Styles */
.valuation-container {
  max-width: 800px;
  margin: 0 auto;
}

.valuation-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.valuation-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.intro-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.valuation-intro p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.valuation-options {
  display: grid;
  gap: 3rem;
}

.valuation-form-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.valuation-form-section h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.valuation-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.valuation-contact-section {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px dashed var(--primary-color);
}

.valuation-contact-section h2 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.phone-number {
  display: inline-block;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  height: 85vh;
  /* Modern sporty Honda (CBR/Fireblade) */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1596422749320-da5cbdf07e60?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Elegant Split CTA */
.hero-cta-container {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.hero-cta-container:hover {
  transform: translateY(-5px);
}

.cta-card {
  flex: 1;
  padding: 2rem 3rem;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  position: relative;
}

.cta-card:hover {
  background: rgba(216, 26, 34, 0.8);
  /* Honda Red transparent */
}

.cta-label {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.cta-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.cta-icon {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.cta-card:hover .cta-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Removal of old buttons css if not used elsewhere, keeping broadly compatible */
.btn-large {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Featured Section */

/* Featured Section */
.featured-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Brands Section */
.brands-section {
  background: #f0f0f0;
  padding: 4rem 1.5rem;
  text-align: center;
}

.brands-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.brand-item {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.brand-item:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Clothing Grid */
.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.clothing-category {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.clothing-category:hover {
  transform: translateY(-5px);
}

.clothing-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.clothing-category:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem;
  color: white;
}

.category-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Clothing Category Hero */
.category-hero {
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.category-hero h1 {
  position: relative;
  color: white;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Season Filters */
.season-filters {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  background: #f5f5f5;
}

.season-filters h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.season-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.season-btn {
  padding: 0.75rem 2rem;
  border: 2px solid #333;
  background: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.season-btn:hover {
  background: #333;
  color: white;
}

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

/* Filter Controls */
.filter-controls {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.filter-controls label {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.filter-controls select {
  padding: 0.75rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  background: white;
  cursor: pointer;
  min-width: 200px;
}

.filter-controls select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Helmet Categories Grid */
.helmet-categories-section {
  background: #1a1a1a;
  padding: 4rem 1.5rem;
  text-align: center;
}

.helmet-categories-section h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.helmet-categories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.helmet-category {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.helmet-category:hover {
  transform: scale(1.05);
  z-index: 10;
}

.helmet-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.helmet-category:hover img {
  transform: scale(1.1);
}

.helmet-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.helmet-category:hover .helmet-category-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.helmet-category-overlay h3 {
  color: white;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========================================
   HERO SECTION PREMIUM UPGRADE
   Add this to styles.css
   ======================================== */

/* Hero Container */
.hero-honda {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7);
}

/* Fallback Image (for mobile or no video) */
.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-image: url('/images/hero-fallback.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: none;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 1200px;
  padding: 2rem;
}

/* Honda Badge */
.honda-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out 0.3s both;
}

.honda-wings {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  object-fit: contain;
  display: block;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

/* Main Title */
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.title-line {
  display: block;
}

.title-highlight {
  color: #D81A22;
  /* Honda Red */
  text-shadow:
    0 0 30px rgba(216, 26, 34, 0.5),
    0 0 60px rgba(216, 26, 34, 0.3);
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.7s both;
}

/* CTA Buttons Container */
.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Primary CTA Button */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: #D81A22;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(216, 26, 34, 0.3);
}

.btn-hero-primary:hover {
  background: #B01519;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(216, 26, 34, 0.5);
}

.btn-hero-primary svg {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
  transform: translateX(5px);
}

/* Secondary CTA Button */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 3rem;
  background: transparent;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: white;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  animation: fadeIn 1s ease-out 1.5s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scroll-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 2.04px;
  margin-right: -2.04px; /* Compensa il letter-spacing finale */
  text-align: center;
  white-space: nowrap;
}

.scroll-arrow {
  animation: bounce 2s infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {

  /* Hide video on mobile, show fallback image */
  .hero-video {
    display: none;
  }

  .hero-fallback {
    display: block;
  }

  .hero-honda {
    min-height: 100vh;
  }

  .honda-badge {
    flex-direction: column;
    padding: 0.8rem 1.5rem;
    gap: 0.5rem;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .scroll-indicator {
    bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
  }

  .honda-wings {
    width: 40px;
    height: 27px;
  }

  .badge-text {
    font-size: 0.65rem;
  }
}

/* ========================================
   PREMIUM HEADER STYLES
   Add to styles.css
   ======================================== */

/* Header Container */
.header-honda {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.header-honda.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Top Contact Bar */
.header-top {
  background: #1a1a1a;
  color: white;
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #D81A22;
}

.contact-item svg {
  width: 14px;
  height: 14px;
}

.header-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.social-link:hover {
  color: #D81A22;
}

/* Main Navigation */
.header-nav {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Navigation Menus */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}

/* Responsive navbar spacing */
@media (max-width: 1400px) {
  .nav-menu {
    gap: 1.8rem;
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-menu a {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.2rem;
  }
  
  .nav-menu a {
    font-size: 0.85rem;
  }
}

.nav-left {
  margin-right: auto;
}

.nav-right {
  margin-left: auto;
}

.nav-menu a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover {
  color: #D81A22;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D81A22;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.dropdown-menu a::after {
  display: none;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-wings {
  filter: drop-shadow(0 2px 4px rgba(216, 26, 34, 0.2));
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: #D81A22;
  letter-spacing: 0.1em;
}

.logo-location {
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* CTA Button */
.nav-cta {
  padding: 0.75rem 1.5rem;
  background: #D81A22;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #B01519;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 26, 34, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  opacity: 0.7;
}

.mobile-menu-close svg {
  width: 32px;
  height: 32px;
  stroke-width: 3;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu-list li {
  margin: 0.75rem 0;
}

.mobile-menu-list a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.mobile-menu-list a:hover {
  color: #D81A22;
}

.mobile-menu-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.mobile-contact {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
}

.btn-mobile-cta {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #D81A22;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 1024px) {

  .nav-left,
  .nav-right,
  .nav-cta {
    display: none;
  }

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

  .nav-logo {
    position: static;
    transform: none;
  }
}

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

  .container-fluid {
    padding: 0 1rem;
  }

  .logo-brand {
    font-size: 1.2rem;
  }

  .logo-location {
    font-size: 0.6rem;
  }

  .logo-wings {
    width: 35px;
    height: 25px;
  }
}

/* ============================================
   EASY HONDA SECTION (Valore Futuro Garantito)
   ============================================ */

.easy-honda-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.easy-honda-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D81A22 0%, #ff4444 100%);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
}

.easy-honda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.easy-honda-step {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.easy-honda-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(216, 26, 34, 0.15);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f9f9f9 0%, #e9e9e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #D81A22;
}

.step-icon {
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.easy-honda-step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.step-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.easy-honda-cta {
  text-align: center;
}

.btn-easy-honda {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #D81A22;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(216, 26, 34, 0.3);
}

.btn-easy-honda:hover {
  background: #b01419;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(216, 26, 34, 0.4);
}

.btn-easy-honda svg {
  transition: transform 0.3s ease;
}

.btn-easy-honda:hover svg {
  transform: translateX(5px);
}

.easy-honda-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .easy-honda-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .easy-honda-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .easy-honda-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .easy-honda-step {
    padding: 30px 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .btn-easy-honda {
    font-size: 1rem;
    padding: 16px 32px;
  }
}


/* ============================================
   FEATURED SERVICES SECTION
   ============================================ */

.featured-services-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

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

.service-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #D81A22;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: #D81A22;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(216, 26, 34, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #fff0f0;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
}

.btn-services {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #D81A22;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(216, 26, 34, 0.3);
}

.btn-services:hover {
  background: #b01419;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(216, 26, 34, 0.4);
}

.btn-services svg {
  transition: transform 0.3s ease;
}

.btn-services:hover svg {
  transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .featured-services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .btn-services {
    font-size: 1rem;
    padding: 16px 32px;
  }
}


/* ============================================
   TEST RIDE MODAL
   ============================================ */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #D81A22;
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  padding: 50px 40px 30px;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.modal-header p {
  color: #666;
  font-size: 1rem;
}

.test-ride-form {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D81A22;
  box-shadow: 0 0 0 3px rgba(216, 26, 34, 0.1);
}

.btn-submit-modal {
  width: 100%;
  background: #D81A22;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-submit-modal:hover {
  background: #b01419;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 26, 34, 0.3);
}

.form-note {
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  margin-top: 16px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  animation: none;
}

.whatsapp-float svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content {
    margin: 20px;
  }

  .modal-header {
    padding: 40px 20px 20px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .test-ride-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


/* ============================================
   GOOGLE MAPS & CONTACT SECTION
   ============================================ */

.maps-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.maps-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid #D81A22;
}

.map-wrapper iframe {
  display: block;
}

.contact-info-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #D81A22;
}

.contact-info-box h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: #fff0f0;
  transform: translateX(5px);
}

.info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #D81A22;
  margin-bottom: 5px;
}

.info-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.info-item a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.info-item a:hover {
  color: #D81A22;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .maps-container {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .maps-contact-section {
    padding: 60px 0;
  }

  .contact-info-box {
    padding: 30px 20px;
  }

  .contact-info-box h2 {
    font-size: 1.5rem;
  }

  .map-wrapper {
    height: 350px;
  }

  .info-item {
    padding: 15px;
  }
}

/* ============================================
   HEADER RESPONSIVE FIX
   ============================================ */

/* Riduci dimensioni logo per schermi medi */
@media (max-width: 1200px) {
  .logo-honda {
    font-size: 1.6rem;
  }
  
  .logo-moto {
    font-size: 0.85rem;
  }
  
  .header-nav a {
    font-size: 0.85rem;
    padding: 0 0.8rem;
  }
  
  .btn-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .header-main {
    padding: 0.75rem 1rem;
  }
  
  .logo-honda {
    font-size: 1.4rem;
  }
  
  .logo-moto {
    font-size: 0.75rem;
  }
  
  .header-nav a {
    font-size: 0.8rem;
    padding: 0 0.6rem;
  }
  
  .btn-cta {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* ANIMAZIONI SCROLL */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   HERO SECTION ENHANCED
   ============================================ */

.hero-video-background::before {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(216, 26, 34, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  animation: fadeInHero 1.2s ease-out;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: slideInFromLeft 1s ease-out 0.2s both;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  animation: slideInFromRight 1s ease-out 0.4s both;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-cta-group {
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   MOTORCYCLE CARDS ENHANCED
   ============================================ */

.motorcycle-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.motorcycle-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(216, 26, 34, 0.3);
}

.motorcycle-card:hover .motorcycle-image {
  transform: scale(1.1);
}

.motorcycle-card:hover .card-badge {
  transform: scale(1.1) rotate(5deg);
}

/* Gradient overlays sulle card */
.motorcycle-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.motorcycle-card:hover .motorcycle-image::after {
  opacity: 1;
}

/* ============================================
   SCROLL INDICATOR PULSE
   ============================================ */

.scroll-indicator {
  animation: pulseScroll 2s ease-in-out infinite;
}

@keyframes pulseScroll {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(10px);
  }
}

.scroll-arrow {
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ============================================
   BUTTON RIPPLE EFFECT
   ============================================ */

.btn-primary, .btn-outline, .btn-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-outline::before,
.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-cta:hover::before {
  width: 300px;
  height: 300px;
}

/* ============================================
   LAZY LOADING IMAGES
   ============================================ */

/* Placeholder per immagini in loading */
img[loading="lazy"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Smooth fade-in quando immagine è caricata */
img[loading="lazy"].loaded {
  animation: fadeInImage 0.6s ease-in;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   PERFORMANCE: WILL-CHANGE OPTIMIZATION
   ============================================ */

.motorcycle-card,
.service-card,
.easy-honda-step {
  will-change: transform;
}

.motorcycle-card:hover,
.service-card:hover,
.easy-honda-step:hover {
  will-change: auto;
}

/* ============================================
   REDUCED MOTION ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .fade-in-up,
  .fade-in,
  .scale-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   PRINT OPTIMIZATION
   ============================================ */

@media print {
  .whatsapp-float,
  .mobile-menu-overlay,
  .mobile-menu-toggle,
  video {
    display: none !important;
  }
  
  .motorcycle-card,
  .service-card {
    break-inside: avoid;
  }
}

/* ============================================
   SERVICES GRID - 4 COLUMNS LAYOUT
   ============================================ */

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

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

@media (max-width: 768px) {
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HONDA CATEGORY FILTERS
   ============================================ */

.honda-category-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  margin-bottom: 2rem;
}

.category-header {
  text-align: center;
  margin-bottom: 2rem;
}

.category-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.category-header p {
  color: #666;
  font-size: 1.1rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.category-filter-btn {
  padding: 1rem 2rem;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-filter-btn .count {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.category-filter-btn:hover {
  border-color: #D81A22;
  color: #D81A22;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 26, 34, 0.15);
}

.category-filter-btn.active {
  background: #D81A22;
  border-color: #D81A22;
  color: white;
  box-shadow: 0 4px 16px rgba(216, 26, 34, 0.3);
}

.category-filter-btn.active .count {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
  .category-filters {
    gap: 0.75rem;
  }
  
  .category-filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .category-header h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   USATE PAGE FILTERS
   ============================================ */

.usate-filters-bar {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.filter-group select {
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  transition: border-color 0.3s;
}

.filter-group select:focus {
  outline: none;
  border-color: #D81A22;
}

.filter-group select:hover {
  border-color: #D81A22;
}

/* Card Badge Variations */
.card-badge.usata {
  background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

/* No Results Message */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  font-size: 1.2rem;
  color: #666;
  grid-column: 1 / -1;
}

/* ============================================
   MOTORCYCLE CARDS - COMPACT VERSION
   Dimensioni ridotte come ptmmotors.it
   ============================================ */

.motorcycle-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
}

.motorcycle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(216, 26, 34, 0.2);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #D81A22 0%, #B01319 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(216, 26, 34, 0.3);
}

.card-badge.usata {
  background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

/* IMMAGINE COMPATTA */
.motorcycle-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.motorcycle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* INFO COMPATTA */
.motorcycle-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.motorcycle-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.motorcycle-category {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
  margin: 0;
}

.motorcycle-details {
  display: flex;
  gap: 12px;
  margin: 8px 0;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #666;
}

.detail-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.motorcycle-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #D81A22;
  margin: 8px 0;
}

.btn-details {
  display: inline-block;
  padding: 10px 20px;
  background: #D81A22;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-details:hover {
  background: #B01319;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 26, 34, 0.3);
}

/* GRID COMPATTA */
.motorcycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 0;
}

@media (max-width: 768px) {
  .motorcycle-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  
  .motorcycle-image {
    height: 180px;
  }
  
  .motorcycle-info {
    padding: 12px;
  }
  
  .motorcycle-title {
    font-size: 0.95rem;
  }
  
  .motorcycle-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .motorcycle-grid {
    grid-template-columns: 1fr;
  }
  
  .motorcycle-image {
    height: 200px;
  }
}
/* ============================================
   MOBILE MENU - ACCORDION FIX
   Stile come Honda.it
   ============================================ */

/* Promozioni item in ROSSO */
.mobile-menu-item.promo-item .promo-link {
  color: #D81A22 !important;
  font-weight: 700;
}

.mobile-menu-item.promo-item .promo-link:hover {
  color: #B01319 !important;
}

/* Fix per button accordion */
.mobile-menu-link {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

/* Mobile submenu styling */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-item.active .mobile-submenu {
  max-height: 500px;
}

.mobile-menu-item.active .mobile-menu-toggle-icon {
  transform: rotate(45deg);
}
