/* ============================================
   MODERN 2025 HERO SECTION - CLEAN & MINIMAL
   ============================================ */

/* Modern 2025 Hero Section */
.hero-section-2025 {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  padding: 1.5rem 0;
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.hero-section-2025::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.hero-section-2025 * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.hero-section-2025 *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

/* Remove any decorative elements and lines */
.hero-section-2025::before,
.hero-section-2025::after {
  display: none !important;
  content: none !important;
}

.hero-section-2025 .container {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow-x: hidden !important;
}

.hero-section-2025 .container::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.hero-section-2025 .container::before,
.hero-section-2025 .container::after {
  display: none !important;
  content: none !important;
}

.hero-grid-2025 {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow-x: hidden !important;
}

.hero-grid-2025::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.hero-grid-2025::before,
.hero-grid-2025::after {
  display: none !important;
  content: none !important;
}

.hero-content-2025 {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow-x: hidden !important;
}

.hero-content-2025::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Remove any vertical stripe decorative elements from container and grid */
.hero-section-2025 .container,
.hero-section-2025 .hero-grid-2025,
.hero-section-2025 .hero-content-2025 {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  position: relative;
}

.hero-section-2025 .container::before,
.hero-section-2025 .container::after,
.hero-section-2025 .hero-grid-2025::before,
.hero-section-2025 .hero-grid-2025::after,
.hero-section-2025 .hero-content-2025::before,
.hero-section-2025 .hero-content-2025::after {
  display: none !important;
  content: none !important;
}

/* Simplified Background */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* Ensure no borders or lines in all responsive breakpoints */
@media (max-width: 1920px) {
  .hero-section-2025,
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
  }
  
  .hero-section-2025::before,
  .hero-section-2025::after,
  .hero-section-2025 .container::before,
  .hero-section-2025 .container::after,
  .hero-section-2025 .hero-grid-2025::before,
  .hero-section-2025 .hero-grid-2025::after,
  .hero-section-2025 .hero-content-2025::before,
  .hero-section-2025 .hero-content-2025::after {
    display: none !important;
    content: none !important;
  }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  animation: orbFloat 12s ease-in-out infinite;
}

.floating-orb.orb-1 {
  width: 120px;
  height: 120px;
  background: #800000;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-orb.orb-2 {
  width: 100px;
  height: 100px;
  background: #ffffff;
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

.floating-orb.orb-3 {
  width: 110px;
  height: 110px;
  background: #800000;
  bottom: 30%;
  left: 60%;
  animation-delay: 8s;
}

.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(128, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  animation: meshMove 15s ease-in-out infinite;
}

.particle-field {
  display: none; /* Simplified - no particles */
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

@keyframes meshMove {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

/* Hero Content */
.hero-grid-2025 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Responsive grid layout */
@media (max-width: 1024px) {
  .hero-grid-2025 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section-2025,
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
  }
  
  .hero-grid-2025 {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section-2025,
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
  }
  
  .hero-grid-2025 {
    gap: 1rem;
  }
}

.hero-content-2025 {
  color: white;
  animation: slideInLeft 1s ease-out;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  padding: 0 1rem;
}

/* Simplified Hero Tag */
.hero-tag-2025 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(128, 0, 0, 0.1);
  border: 1px solid rgba(128, 0, 0, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.tag-icon {
  font-size: 1.2rem;
  color: #800000;
}

.tag-text {
  color: #ffffff;
}

/* Clean Hero Title */
.hero-title-2025 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.title-line-1,
.title-line-2,
.title-line-3 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.title-line-1 {
  animation-delay: 0.3s;
}

.title-line-2 {
  animation-delay: 0.5s;
}

.title-line-3 {
  animation-delay: 0.7s;
}

.highlight-gradient {
  color: #800000;
  position: relative;
}

.highlight-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #800000;
  animation: expandWidth 1s ease-out 1s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Clean Description */
.hero-description-2025 {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 450px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Simplified Brands Showcase */
.brands-showcase-2025 {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 1.1s both;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.brands-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brands-carousel-2025 {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.brands-carousel-2025::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.brand-logo-2025 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  min-width: 80px;
}

.brand-logo-2025:hover {
  transform: translateY(-4px);
  background: rgba(128, 0, 0, 0.1);
  border-color: rgba(128, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.brand-glow {
  display: none; /* Simplified - no glow */
}

.brand-logo-2025 img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0.9) grayscale(100%);
  transition: all 0.4s ease;
}

.brand-logo-2025:hover img {
  filter: brightness(1.1) grayscale(0%);
  transform: scale(1.1);
}

.brand-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  transition: color 0.4s ease;
}

.brand-logo-2025:hover .brand-name {
  color: #ffffff;
}

/* Clean Stats */
.hero-stats-2025 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 1.3s both;
}

.stat-item-2025 {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
}

.stat-item-2025:hover {
  transform: translateY(-2px);
  background: rgba(128, 0, 0, 0.05);
  border-color: rgba(128, 0, 0, 0.2);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #800000;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-family: 'Arial', sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Clean CTA Buttons */
.hero-cta-2025 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.btn-primary-2025,
.btn-secondary-2025 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  font-size: 0.95rem;
}

.btn-primary-2025 {
  background: #800000;
  color: white;
  border: 2px solid #800000;
}

.btn-primary-2025:hover {
  background: #ffffff;
  color: #800000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary-2025 {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-2025:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.btn-primary-2025:hover .btn-icon,
.btn-secondary-2025:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero version of standalone social section */
.hero-social-wrapper-2025 {
  margin-top: 2rem;
}

.hero-social-wrapper-2025 .social-content {
  margin: 0;
  text-align: left;
}

.hero-social-wrapper-2025 .social-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  background: none;
  -webkit-text-fill-color: inherit;
  color: #ffffff;
}

.hero-social-wrapper-2025 .social-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero-social-wrapper-2025 .social-media-icons-standalone {
  justify-content: flex-start;
}

.hero-social-wrapper-2025 .standalone-social-link {
  background: #ffffff;
}

.hero-social-wrapper-2025 .standalone-social-link span {
  color: inherit;
}

@media (max-width: 768px) {
  .hero-social-wrapper-2025 {
    margin-top: 1.5rem;
  }

  .hero-social-wrapper-2025 .social-title {
    font-size: 1.4rem;
  }
}

/* ============================================
   HERO SOCIAL MEDIA ICONS
   ============================================ */
.hero-social-media {
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 1.8s both;
}

.social-media-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-media-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
  z-index: 2;
  position: relative;
}

.hero-social-link::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.6s;
  z-index: 1;
}

.hero-social-link:hover::before {
  left: 100%;
}

.hero-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-social-link:hover svg {
  transform: scale(1.1);
}

/* Individual social media colors */
.hero-social-link.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.hero-social-link.whatsapp:hover {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-social-link.facebook {
  background: rgba(24, 119, 242, 0.15);
  color: #1877F2;
}

.hero-social-link.facebook:hover {
  background: #1877F2;
  color: white;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.hero-social-link.instagram {
  background: rgba(228, 64, 95, 0.15);
  color: #E4405F;
}

.hero-social-link.instagram:hover {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
  color: white;
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.hero-social-link.tiktok {
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.hero-social-link.tiktok:hover {
  background: #000000;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* ============================================
   3D VISUAL SECTION - CLEAN & MINIMAL
   ============================================ */

.hero-visual-2025 {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1s ease-out 0.5s both;
}

.hero-3d-scene {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* 3D Car Container */
.car-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.car-3d-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Rotating Platform */
.car-platform {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  animation: platformRotate 20s linear infinite;
}

.platform-rings {
  position: relative;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(128, 0, 0, 0.2);
  animation: ringPulse 6s ease-in-out infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.ring-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-delay: 2s;
  border-color: rgba(255, 255, 255, 0.1);
}

.ring-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-delay: 4s;
  border-color: rgba(128, 0, 0, 0.3);
}

@keyframes platformRotate {
  0% {
    transform: translateX(-50%) rotateY(0deg);
  }
  100% {
    transform: translateX(-50%) rotateY(360deg);
  }
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

/* Featured Car Display - Clean & Minimal */
.featured-car-display {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.car-hologram {
  position: relative;
  width: 320px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(-5deg) rotateX(2deg);
  animation: carFloat 8s ease-in-out infinite;
  
  /* Clean Minimal Frame */
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: none !important;
  box-shadow: 
    0 15px 45px rgba(0, 0, 0, 0.4);
  padding: 1rem;
  overflow: hidden;
}

.car-hologram::before {
  display: none !important;
  content: none !important;
}

.car-hologram:hover::before {
  display: none !important;
}

.car-hologram::after {
  display: none !important;
  content: none !important;
}

.car-3d-image {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: 
    brightness(1.1) 
    contrast(1.1) 
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
}

.car-hologram:hover {
  transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
  border: none !important;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5);
}

.car-hologram:hover .car-3d-image {
  transform: scale(1.05);
  filter: 
    brightness(1.2) 
    contrast(1.2) 
    drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
}

/* Simplified Hologram Effects */
.hologram-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.scan-line {
  display: none !important;
}

.data-points {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.data-point {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #800000;
  border: 1px solid #ffffff;
  border-radius: 50%;
  animation: dataPointPulse 4s ease-in-out infinite;
}

.data-point::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
}

.point-1 {
  top: 20%;
  left: 25%;
  animation-delay: 0s;
}

.point-2 {
  top: 65%;
  right: 30%;
  animation-delay: 2s;
}

.point-3 {
  bottom: 25%;
  left: 55%;
  animation-delay: 4s;
}

/* Simplified corner indicators */
.corner-indicators {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

.corner-indicator {
  position: absolute;
  width: 20px;
  height: 20px;
  border: none !important;
  display: none !important;
}

.corner-indicator.top-left,
.corner-indicator.top-right,
.corner-indicator.bottom-left,
.corner-indicator.bottom-right {
  display: none !important;
  border: none !important;
}

/* Clean Car Info Card */
.car-info-card-2025 {
  background: rgba(255, 255, 255, 0.03);
  border: none !important;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: white;
  position: relative;
  max-width: 300px;
  animation: cardSlideUp 1s ease-out 1s both;
}

.car-badge {
  display: inline-block;
  background: #800000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.car-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.car-price-2025 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.current-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #800000;
}

.original-price {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.discount-badge {
  background: #800000;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.car-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #800000;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid #800000;
}

.car-cta-btn:hover {
  background: transparent;
  color: #800000;
  border-color: #800000;
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.4s ease;
}

.car-cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Ambient Lighting - Simplified */
.ambient-lighting {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.light-beam {
  display: none !important;
}

.beam-1,
.beam-2,
.beam-3 {
  display: none !important;
}

/* Animations */
@keyframes carFloat {
  0%, 100% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-6px);
  }
}

@keyframes scanMove {
  0% {
    top: 0;
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes dataPointPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes beamMove {
  0%, 100% {
    transform: translateX(0) scaleY(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(10px) scaleY(1.1);
    opacity: 0.6;
  }
}

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

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

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

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

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

/* Responsive Design - Compact Hero */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-section-2025 {
    min-height: 32vh;
    padding: 1.2rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-visual-2025 {
    height: 350px;
  }
  
  .car-hologram {
    width: 280px;
    height: 160px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .hero-section-2025 {
    min-height: 30vh;
    padding: 1rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-grid-2025 {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-visual-2025 {
    height: 320px;
    order: -1;
  }
  
  .car-hologram {
    width: 250px;
    height: 140px;
  }
  
  .floating-orb {
    display: none;
  }
}

/* Mobile devices only (≤640px) - hide car visualization */
@media (max-width: 640px) {
  .hero-section-2025 {
    min-height: 28vh;
    padding: 1rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-grid-2025 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: center !important;
    align-items: stretch !important;
  }
  
  .hero-content-2025 {
    order: 1;
    width: 100%;
  }
  
  /* Hide car visualization on mobile phones to prevent overlap */
  .hero-visual-2025 {
    display: none !important;
  }
  
  .car-hologram {
    display: none !important;
  }
  
  /* Fix Explorer button styling */
  .hero-cta-2025 {
    width: 100% !important;
    margin-top: 1rem !important;
  }
  
  .btn-primary-2025 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
  }
  
  .car-platform {
    width: 180px;
    height: 180px;
  }
  
  .hero-stats-2025 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .brands-showcase-2025 {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .brands-title {
    font-size: 0.8rem;
    margin-bottom: 0.9rem;
    text-align: center;
  }
  
  .brands-carousel-2025 {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .brand-logo-2025 {
    min-width: 75px;
    padding: 0.85rem 0.6rem;
  }
  
  .brand-logo-2025 img {
    width: 36px;
    height: 36px;
  }
  
  .brand-name {
    font-size: 0.7rem;
  }
  
  .hero-cta-2025 {
    justify-content: center;
  }
  
  .btn-primary-2025,
  .btn-secondary-2025 {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
  
  /* Hero Social Media - Mobile */
  .hero-social-media {
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .social-media-icons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .hero-social-link {
    width: 40px;
    height: 40px;
  }
  
  .hero-social-link svg {
    width: 18px;
    height: 18px;
  }
  
  .car-info-card-2025 {
    padding: 1.5rem 1.25rem !important;
    max-width: 90% !important;
    width: 100% !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  }
  
  .car-name {
    font-size: 1.3rem !important;
  }
  
  .current-price {
    font-size: 1.6rem !important;
  }
  
  .car-cta-btn {
    width: 100% !important;
    max-width: 280px !important;
  }
  
  .floating-orb,
  .mesh-gradient {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section-2025 {
    min-height: 30vh;
    padding: 1rem 0;
  }
  
  .hero-container-2025 {
    padding: 0 1rem;
  }
  
  .hero-content-2025 {
    padding: 1rem 0;
    order: 1;
    width: 100%;
  }
  
  /* Hide car visualization on mobile to prevent overlap */
  .hero-visual-2025 {
    display: none !important;
  }
  
  .car-hologram {
    display: none !important;
  }
  
  /* Ensure proper grid layout */
  .hero-grid-2025 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  
  /* Fix Explorer button styling */
  .hero-cta-2025 {
    width: 100% !important;
    margin-top: 1rem !important;
  }
  
  .btn-primary-2025 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
  }
  
  .hero-title-2025 {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }
  
  .hero-description-2025 {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
  }
  
  .brands-showcase-2025 {
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }
  
  .brands-title {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }
  
  .brands-carousel-2025 {
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .brand-logo-2025 {
    min-width: 70px;
    padding: 0.75rem 0.5rem;
    gap: 0.4rem;
  }
  
  .brand-logo-2025 img {
    width: 32px;
    height: 32px;
  }
  
  .brand-name {
    font-size: 0.65rem;
  }
  
  .hero-stats-2025 {
    display: none;
  }
  
  .car-platform {
    width: 140px;
    height: 140px;
  }
  
  /* Featured Card Mobile Styles */
  .car-info-card-2025 {
    padding: 1.5rem 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  }
  
  .car-badge {
    font-size: 0.65rem !important;
    padding: 0.4rem 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .car-name {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .car-price-2025 {
    gap: 0.4rem !important;
    margin-bottom: 1rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  
  .current-price {
    font-size: 1.5rem !important;
  }
  
  .original-price {
    font-size: 0.85rem !important;
  }
  
  .discount-badge {
    font-size: 0.7rem !important;
    padding: 0.2rem 0.4rem !important;
  }
  
  .price-period {
    font-size: 0.9rem !important;
  }
  
  .car-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS FOR HERO
   ============================================ */

/* Extra Small Mobile (320px - 360px) */
@media (max-width: 360px) {
  .hero-section-2025 {
    min-height: 28vh;
    padding: 0.6rem 0;
  }
  
  .hero-container-2025 {
    padding: 0 0.75rem;
  }
  
  .hero-content-2025 {
    padding: 0.8rem 0;
    order: 1;
    width: 100%;
  }
  
  /* Hide car visualization on extra small mobile */
  .hero-visual-2025 {
    display: none !important;
  }
  
  .car-hologram {
    display: none !important;
  }
  
  /* Ensure proper grid layout */
  .hero-grid-2025 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    align-items: stretch !important;
  }
  
  /* Fix Explorer button styling */
  .hero-cta-2025 {
    width: 100% !important;
    margin-top: 0.75rem !important;
  }
  
  .btn-primary-2025 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
    justify-content: center !important;
  }
  
  .hero-title-2025 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .hero-description-2025 {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }
  
  .brands-showcase-2025 {
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
  }
  
  .brands-title {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }
  
  .brands-carousel-2025 {
    gap: 0.5rem;
    justify-content: center;
  }
  
  .brand-logo-2025 {
    min-width: 60px;
    padding: 0.6rem 0.4rem;
    gap: 0.3rem;
  }
  
  .brand-logo-2025 img {
    width: 28px;
    height: 28px;
  }
  
  .brand-name {
    font-size: 0.6rem;
  }
  
  .hero-cta-2025 {
    margin-top: 1rem;
  }
  
  .btn-primary-2025 {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  /* Featured Card Extra Small Mobile */
  .car-info-card-2025 {
    padding: 1.25rem 0.875rem !important;
    max-width: 100% !important;
    border-radius: 10px !important;
  }
  
  .car-badge {
    font-size: 0.6rem !important;
    padding: 0.35rem 0.7rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .car-name {
    font-size: 1.1rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .current-price {
    font-size: 1.35rem !important;
  }
  
  .original-price {
    font-size: 0.8rem !important;
  }
  
  .discount-badge {
    font-size: 0.65rem !important;
    padding: 0.15rem 0.35rem !important;
  }
  
  .price-period {
    font-size: 0.85rem !important;
  }
  
  .car-cta-btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
  }
}

/* Small Mobile (361px - 480px) - Already covered above */

/* Medium Mobile (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
  .hero-section-2025 {
    min-height: 32vh;
    padding: 1.2rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-content-2025 {
    order: 1;
    width: 100%;
  }
  
  /* Hide car visualization on medium mobile to prevent overlap */
  .hero-visual-2025 {
    display: none !important;
  }
  
  .car-hologram {
    display: none !important;
  }
  
  /* Ensure proper grid layout */
  .hero-grid-2025 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }
  
  /* Fix Explorer button styling */
  .hero-cta-2025 {
    width: 100% !important;
    margin-top: 1rem !important;
  }
  
  .btn-primary-2025 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.9rem 1.75rem !important;
    font-size: 1rem !important;
    justify-content: center !important;
  }
  
  .hero-title-2025 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }
  
  .hero-description-2025 {
    font-size: 0.9rem;
  }
  
  .brands-showcase-2025 {
    margin-bottom: 1.2rem;
    padding: 0 0.75rem;
  }
  
  .brands-title {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }
  
  .brands-carousel-2025 {
    gap: 0.9rem;
  }
  
  .brand-logo-2025 {
    min-width: 72px;
    padding: 0.8rem 0.55rem;
  }
  
  .brand-logo-2025 img {
    width: 34px;
    height: 34px;
  }
  
  .brand-name {
    font-size: 0.68rem;
  }
  
  /* Featured Card Medium Mobile */
  .car-info-card-2025 {
    padding: 1.75rem 1.25rem !important;
    max-width: 90% !important;
  }
  
  .car-name {
    font-size: 1.4rem !important;
  }
  
  .current-price {
    font-size: 1.65rem !important;
  }
}

/* Tablet Portrait (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
  .hero-section-2025 {
    min-height: 35vh;
    padding: 1.5rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-grid-2025 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }
  
  .hero-content-2025 {
    order: 2;
    width: 100%;
    text-align: center;
  }
  
  /* Show car visualization but position it first, above content */
  .hero-visual-2025 {
    height: 260px;
    order: 1;
    margin-bottom: 1rem;
    display: flex !important;
  }
  
  .car-hologram {
    width: 240px;
    height: 150px;
    padding: 1rem;
    display: block !important;
  }
  
  .hero-title-2025 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .hero-description-2025 {
    font-size: 1rem;
  }
  
  /* Fix Explorer button styling */
  .hero-cta-2025 {
    width: 100% !important;
    max-width: 500px !important;
    margin: 1.5rem auto 0 !important;
  }
  
  .btn-primary-2025 {
    width: 100% !important;
    padding: 1rem 2rem !important;
    font-size: 1.05rem !important;
    justify-content: center !important;
  }
  
  /* Featured Card Tablet Portrait */
  .car-info-card-2025 {
    padding: 2rem 1.5rem !important;
    max-width: 400px !important;
  }
  
  .car-name {
    font-size: 1.5rem !important;
  }
  
  .current-price {
    font-size: 1.75rem !important;
  }
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section-2025 {
    min-height: 38vh;
    padding: 2rem 0;
  }
  
  .hero-visual-2025 {
    height: 300px;
  }
  
  .car-hologram {
    width: 280px;
    height: 170px;
    padding: 1.2rem;
  }
  
  .hero-title-2025 {
    font-size: clamp(2.5rem, 6vw, 3rem);
  }
  
  .hero-description-2025 {
    font-size: 1.1rem;
  }
}

/* Desktop Small (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .hero-section-2025 {
    min-height: 40vh;
    padding: 2.5rem 0;
  }
  
  .hero-visual-2025 {
    height: 350px;
  }
  
  .car-hologram {
    width: 320px;
    height: 190px;
    padding: 1.5rem;
  }
  
  .hero-title-2025 {
    font-size: clamp(3rem, 5vw, 3.5rem);
  }
}

/* Desktop Medium (1201px - 1400px) */
@media (min-width: 1201px) and (max-width: 1400px) {
  .hero-section-2025 {
    min-height: 42vh;
    padding: 3rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-visual-2025 {
    height: 380px;
  }
  
  .car-hologram {
    width: 360px;
    height: 210px;
    padding: 1.5rem;
  }
  
  .hero-title-2025 {
    font-size: clamp(3.5rem, 5vw, 4rem);
  }
}

/* Desktop Large (1401px - 1920px) */
@media (min-width: 1401px) and (max-width: 1920px) {
  .hero-section-2025 {
    min-height: 45vh;
    padding: 3.5rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-visual-2025 {
    height: 420px;
  }
  
  .car-hologram {
    width: 400px;
    height: 240px;
    padding: 1.5rem;
  }
  
  .hero-title-2025 {
    font-size: clamp(4rem, 4vw, 4.5rem);
  }
}

/* Desktop XL (1921px+) */
@media (min-width: 1921px) {
  .hero-section-2025 {
    min-height: 50vh;
    padding: 4rem 0;
    border: none !important;
  }
  
  .hero-section-2025 .container,
  .hero-section-2025 .hero-grid-2025,
  .hero-section-2025 .hero-content-2025 {
    border: none !important;
  }
  
  .hero-visual-2025 {
    height: 480px;
  }
  
  .car-hologram {
    width: 450px;
    height: 270px;
    padding: 2rem;
  }
  
  .hero-title-2025 {
    font-size: clamp(4.5rem, 4vw, 5rem);
  }
}