/* ========================================
   FREEMOTOS — Premium Landing Page CSS
   Base: White | Accents: Red #E31837, Black
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E31837;
  --red-dark: #B8132D;
  --red-light: #FF2D4D;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-500: #6B6B6B;
  --gray-700: #3A3A3A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 30px rgba(227,24,55,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Animated Elements --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease;
}
.navbar-logo:hover { transform: scale(1.05); }

/* Dual Logo Support */
.navbar-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
  margin: 0 4px;
}
.navbar.scrolled .brand-divider {
  background: rgba(0,0,0,0.1);
}
.logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.logo-hero {
  height: 38px; /* Further reduced as per request */
}
.navbar.scrolled .logo-img { height: 40px; }
.navbar.scrolled .logo-hero { height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--gray-500); }
.navbar.scrolled .nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(227,24,55,0.35);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.carousel-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(10, 10, 10, 0.7) 0%, 
    rgba(10, 10, 10, 0.3) 40%, 
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,24,55,0.15);
  border: 1px solid rgba(227,24,55,0.3);
  color: var(--red-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227,24,55,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(227,24,55,0); }
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(227, 24, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::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: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(227, 24, 55, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -50px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat-item {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.stat-item:hover { background: var(--gray-50); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* --- Section Shared --- */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Brands --- */
.brands-section {
  background: var(--gray-50);
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.brands-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-500);
  margin-bottom: 30px;
}
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.brand-item {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: var(--transition);
  cursor: default;
}
.brand-item:hover { color: var(--red); }

/* --- Catalog Section — Single Carousel --- */
.catalog-section { padding: 100px 0 80px; background: var(--white); overflow: hidden; }
.catalog-header { margin-bottom: 32px; }
.eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--red); margin-bottom: 8px;
}
.display-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 400;
  color: var(--black); line-height: 0.95; letter-spacing: 2px;
  text-transform: uppercase;
}

/* Brand Filters */
.brand-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.brand-filter {
  padding: 10px 28px; border-radius: 50px;
  border: 2px solid var(--gray-200); background: var(--white);
  font-family: inherit; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-500); cursor: pointer;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.brand-filter::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.brand-filter:hover { border-color: var(--red); color: var(--red); }
.brand-filter.active { border-color: var(--red); color: var(--white); }
.brand-filter.active::before { transform: scaleX(1); }
.brand-filter-name { position: relative; z-index: 1; }

.carousel-counter {
  font-size: 0.8rem; font-weight: 600; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0;
}
.carousel-counter span { color: var(--black); font-weight: 900; }

/* Carousel Wrapper */
.carousel-wrap {
  position: relative; margin-top: 32px;
  padding: 0 max(20px, calc((100vw - 1200px)/2));
}
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--gray-300); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: all 0.3s ease;
  color: var(--black); box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.carousel-nav:hover {
  border-color: var(--red); color: var(--white);
  background: var(--red); box-shadow: var(--shadow-red);
  transform: translateY(-50%) scale(1.08);
}
.carousel-nav:active { transform: translateY(-50%) scale(0.95); }
.carousel-nav--prev { left: max(4px, calc((100vw - 1260px)/2)); }
.carousel-nav--next { right: max(4px, calc((100vw - 1260px)/2)); }

/* Carousel Track */
.carousel-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
  padding: 10px 0 20px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* Moto Cards */
.moto-card {
  flex: 0 0 290px; background: var(--white);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; opacity: 0; transform: translateY(30px);
  animation: cardSlideUp 0.5s ease forwards;
}
.moto-card:nth-child(1) { animation-delay: 0s; }
.moto-card:nth-child(2) { animation-delay: 0.06s; }
.moto-card:nth-child(3) { animation-delay: 0.12s; }
.moto-card:nth-child(4) { animation-delay: 0.18s; }
.moto-card:nth-child(5) { animation-delay: 0.24s; }
.moto-card:nth-child(6) { animation-delay: 0.3s; }
.moto-card:nth-child(n+7) { animation-delay: 0.35s; }
@keyframes cardSlideUp {
  to { opacity: 1; transform: translateY(0); }
}
.moto-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  border-color: rgba(227, 24, 55, 0.2);
}
.moto-card-img {
  position: relative; 
  background: #fff;
  padding: 24px; 
  aspect-ratio: 4/3;
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
  transition: background 0.4s ease;
}
.moto-card:hover .moto-card-img { background: var(--gray-50); }
.moto-card-img img {
  width: 90%; 
  height: 100%; 
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.moto-card:hover .moto-card-img img { transform: scale(1.15) rotate(-2deg); }
.moto-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.moto-card-body { padding: 18px 20px 22px; }
.moto-brand {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); margin-bottom: 4px;
}
.moto-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--black); margin-bottom: 8px;
  line-height: 1.1; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.moto-specs { display: flex; gap: 12px; margin-bottom: 12px; }
.moto-spec {
  font-size: 0.7rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 3px;
}
.moto-price { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 14px; }
.moto-price strong {
  font-size: 1.2rem; color: var(--black); font-weight: 900;
}
.moto-cta {
  display: flex; width: 100%; padding: 13px;
  border-radius: 10px; background: var(--black);
  color: var(--white); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 2px;
  justify-content: center; align-items: center; gap: 6px;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.moto-cta:hover {
  background: var(--red); box-shadow: var(--shadow-red);
  letter-spacing: 3px;
}


/* --- Why Us (Benefits) --- */
.benefits-section { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}
.benefit-card:hover {
  border-color: var(--red);
  box-shadow: 0 15px 40px rgba(227,24,55,0.08);
  transform: translateY(-6px);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
}
.benefit-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Process Steps --- */
.process-section { background: var(--gray-50); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.process-step:hover .step-number { color: var(--red); }
.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227,24,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner .section-tag { color: var(--red-light); }
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-desc { color: rgba(255,255,255,0.6); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}
.testimonial-city {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* --- Locations --- */
.locations-section { background: var(--gray-50); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.location-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.location-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}
.location-card:hover .location-icon {
  transform: scale(1.2);
}
.location-city {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.location-address {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
  cursor: pointer;
}
.location-card:hover .location-address {
  margin-bottom: 12px;
}
.location-list {
  max-height: 0;
  opacity: 0;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}
.location-card:hover .location-list,
.location-card.active .location-list {
  max-height: 500px;
  opacity: 1;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
}
.location-item {
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 12px 0;
  line-height: 1.6;
}
.location-item strong {
  display: block;
  color: var(--black-soft);
  margin-bottom: 2px;
}
.location-tel {
  font-weight: 700;
  color: var(--red);
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 4px;
  text-decoration: none;
  border: 1px solid rgba(227,24,55,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.location-tel:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.05);
}

.dealer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.dealer-cta:hover {
  background: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}
.dealer-cta i { font-size: 1.1rem; }

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 1.1rem;
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* --- Floating Contact Button --- */
.call-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(227,24,55,0.4);
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(227,24,55,0.5);
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(10px);
}
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.7s; }

.mobile-menu a:hover {
  color: var(--red);
  letter-spacing: 6px;
}

/* ===== RESPONSIVE ===== */
/* --- Brand Showcase (Porsche Style) --- */
.brand-showcase-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-showcase-card {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.brand-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.brand-showcase-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.6s ease, transform 6s ease;
}
.brand-showcase-card:hover .brand-showcase-video {
  opacity: 1;
  transform: scale(1.05);
}
.brand-showcase-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  z-index: 2;
}
.brand-showcase-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  width: 100%;
}
.brand-showcase-title {
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  transition: transform 0.4s ease;
  transform: translateY(15px);
}
.brand-showcase-subtitle {
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(15px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-showcase-card:hover .brand-showcase-title {
  transform: translateY(0);
}
.brand-showcase-card:hover .brand-showcase-subtitle {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .benefits-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-showcase-container { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .carousel-nav--prev { left: 8px; }
  .carousel-nav--next { right: 8px; }
  .carousel-wrap { padding: 0 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .brand-showcase-container { grid-template-columns: 1fr; }
  .brand-showcase-card { height: 400px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .benefits-grid,
  .process-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .catalog-section { padding: 70px 0 50px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner { padding: 60px 0; }
  .moto-card { flex: 0 0 260px; }
  .carousel-nav { display: none; }
  .carousel-wrap { padding: 0 16px; }
  .brand-filters { gap: 8px; }
  .brand-filter { padding: 8px 20px; font-size: 0.7rem; }
  .display-title { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .stat-item { padding: 24px 20px; }
  .stat-item:not(:last-child) { border-bottom: 1px solid var(--gray-200); }
  .locations-grid { grid-template-columns: 1fr; }
  .moto-card { flex: 0 0 240px; }
  .display-title { font-size: 2.4rem; }
}

/* Hero Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.indicator-dot.active {
  background: var(--red);
  transform: scale(1.2);
  border-color: rgba(255,255,255,0.5);
}

/* Hero CTA Section */
.hero-cta-section {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}
.cta-content-box {
  max-width: 800px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
}
.cta-title .accent { color: var(--red); }
.cta-text {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-section .hero-actions {
  justify-content: center;
}
.btn-outline.dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

