/* =========================
   RESET & GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */
.auto-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 211, 0, 0.1);
  z-index: 1000;
  
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.8s ease, transform 1.8s ease;
  
  display: flex;
  justify-content: center;
}

.auto-bar.show {
  opacity: 1;
  transform: translateY(0);
}

.auto-inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.diamond-icon {
  width: 12px;
  height: 12px;
  background: #c8d300;
  transform: rotate(45deg);
  box-shadow: 0 0 15px rgba(200, 211, 0, 0.6);
}

.name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.auto-menu {
  display: flex;
  gap: 40px;
}

.auto-menu a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
}

.auto-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c8d300;
  transition: width 0.3s ease;
}

.auto-menu a:hover {
  color: #c8d300;
}

.auto-menu a:hover::after {
  width: 100%;
}

.config-btn {
  padding: 12px 28px;
  background: rgba(200, 211, 0, 0.1);
  border: 1px solid rgba(200, 211, 0, 0.3);
  color: #c8d300;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}

.config-btn:hover {
  background: #c8d300;
  color: #000;
  border-color: #c8d300;
  box-shadow: 0 0 25px rgba(200, 211, 0, 0.4);
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  display: flex;
  flex-direction: column;
}

/* =========================
   VIDEO SECTION
========================= */
.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -50px;
  margin-bottom: -50px;
  transform: none;
  transition: none !important;
  animation: none !important;
}

/* تدرج في أسفل الفيديو */
.video-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}

/* =========================
   SCROLL INDICATOR
========================= */
.scroll-indicator {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator.show {
  opacity: 0.6;
}

.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: #c8d300;
  border-radius: 2px;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 14px; }
}

/* =========================
   CONTENT SECTION
========================= */
.content-section {
  position: relative;
  width: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 120px 20px;
  
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.content-section.show {
  opacity: 1;
  transform: translateY(0);
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.content-section::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8d300, transparent);
  z-index: 2;
}

.content-section > * {
  position: relative;
  z-index: 2;
}

.micro {
  font-size: 12px;
  letter-spacing: 6px;
  color: #c8d300;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  display: block;
  text-shadow: 0 0 20px rgba(200, 211, 0, 0.5);
}

.content-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 55px;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #ccc 50%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.content-section p {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* =========================
   HERO BUTTONS
========================= */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.hero-btn {
  padding: 16px 34px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.hero-btn.primary {
  background: #c8d300;
  color: #000;
  border: 2px solid #c8d300;
}

.hero-btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.hero-btn.primary:hover::before {
  left: 100%;
}

.hero-btn.primary:hover {
  background: transparent;
  color: #c8d300;
  box-shadow: 0 0 30px rgba(200, 211, 0, 0.5);
  transform: translateY(-3px);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
}

.hero-btn.secondary:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.hero-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: scale(1.15);
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
}

/* =========================
   SECTION HEADER
========================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: #c8d300;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   BRANDS SECTION
========================= */
.brands-section {
  padding: 100px 0;
  background: #0a0a0a;
  overflow: hidden;
}

.brands-slider {
  overflow: hidden;
  margin-top: 40px;
}

.brands-track {
  display: flex;
  gap: 60px;
  animation: scrollBrands 30s linear infinite;
}

.brand-item {
  flex-shrink: 0;
}

.brand-item img {
  height: 60px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.brand-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   CARS SECTION
========================= */
.cars-section {
  padding: 120px 0;
  background: #000;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.car-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.car-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 211, 0, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.car-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c8d300;
  color: #000;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
}

.car-badge.hot {
  background: #ff4444;
  color: #fff;
}

.car-image {
  position: relative;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.1);
}

.car-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.car-card:hover .car-overlay {
  opacity: 1;
}

.view-btn {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #c8d300;
  color: #c8d300;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #c8d300;
  color: #000;
}

.car-info {
  padding: 25px;
}

.car-brand {
  font-size: 11px;
  color: #c8d300;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.car-name {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 8px 0 15px;
  color: #fff;
}

.car-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.car-specs span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.car-price {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.car-btn {
  padding: 10px 24px;
  background: rgba(200, 211, 0, 0.1);
  border: 1px solid rgba(200, 211, 0, 0.3);
  color: #c8d300;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.car-btn:hover {
  background: #c8d300;
  color: #000;
}

/* =========================
   CARS CTA - FINAL CENTER FIX
========================= */
.cars-cta {
  text-align: center;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1400px;
  padding: 0 50px;
  box-sizing: border-box;
}

.btn-view-all {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-view-all:hover {
  background: #c8d300;
  border-color: #c8d300;
  color: #000;
}

.cars-cta {
  text-align: center;
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-view-all {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-view-all:hover {
  background: #c8d300;
  border-color: #c8d300;
  color: #000;
}

/* =========================
   FEATURES SECTION
========================= */
.features-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  background: rgba(200, 211, 0, 0.05);
  border-color: rgba(200, 211, 0, 0.2);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 211, 0, 0.1);
  border-radius: 50%;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #c8d300;
}

.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* =========================
   STATISTICS SECTION
========================= */
.stats-section {
  padding: 80px 0;
  background: #c8d300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
  padding: 120px 0;
  background: #000;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(200, 211, 0, 0.3);
}

.testimonial-stars {
  color: #c8d300;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}

.author-title {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 600;
  margin: 15px 0 20px;
  color: #fff;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.cta-btn.primary {
  background: #c8d300;
  color: #000;
}

.cta-btn.primary:hover {
  background: #fff;
  box-shadow: 0 10px 40px rgba(200, 211, 0, 0.3);
}

.cta-btn.primary svg {
  width: 18px;
  height: 18px;
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

.cta-btn.secondary:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.cta-info {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.cta-info-item svg {
  width: 20px;
  height: 20px;
  color: #c8d300;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0a0a0a;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .diamond-icon {
  width: 10px;
  height: 10px;
}

.footer-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #c8d300;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: #000;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c8d300;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: #c8d300;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #c8d300;
}

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .section-header h2 {
    font-size: 42px;
  }
  
  .content-section h1 {
    font-size: 45px;
  }
  
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* =========================
   RESPONSIVE - SMALL TABLET
========================= */
@media (max-width: 992px) {
  .auto-menu { 
    display: none; 
  }
  
  .auto-bar {
    height: 80px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .content-section h1 { 
    font-size: 38px;
    white-space: normal;
  }
  
  .hero-buttons {
    gap: 15px;
  }
  
  .hero-btn {
    padding: 14px 26px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .led-light {
    width: 150px;
    height: 150px;
  }
  
  .led-light.led-1 {
    top: 40px;
    left: 50px;
  }
  
  .led-light.led-2 {
    top: 150px;
    left: 80px;
  }
  
  .led-light.led-3 {
    top: 40px;
    right: 50px;
  }
  
  .led-light.led-4 {
    top: 150px;
    right: 80px;
  }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
  /* === GENERAL === */
  .container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 14px;
  }
  
  .section-tag {
    font-size: 10px;
    letter-spacing: 3px;
  }
  
  /* === NAVBAR === */
  .auto-bar {
    height: 70px;
  }
  
  .auto-inner { 
    padding: 0 20px; 
  }
  
  .name { 
    font-size: 14px; 
    letter-spacing: 2px; 
  }
  
  .diamond-icon {
    width: 10px;
    height: 10px;
  }
  
  .config-btn {
    padding: 10px 16px;
    font-size: 9px;
    letter-spacing: 1px;
  }
  
/* === HERO VIDEO === */
/* === HERO VIDEO === */
  .hero-video {
    height: 45vh;               /* ارتفاع 45% من الشاشة */
    object-fit: cover;          /* تغطية كاملة */
    object-position: center 35%; /* السيارة مرتفعة قليلاً */
    margin-top: 0;
    margin-bottom: 0;
    transform: scale(1);
  }
  
  .scroll-indicator {
    bottom: 60px;
  }
  
  .scroll-indicator .mouse {
    width: 18px;
    height: 28px;
  }
  
  .scroll-indicator span {
    font-size: 8px;
  }
  
  /* === LED LIGHTS === */
  .led-light {
    width: 100px;
    height: 100px;
  }
  
  .led-light.led-1 {
    top: 200px;
    left: 20px;
  }
  
  .led-light.led-2 {
    top: 200px;
    left: 40px;
  }
  
  .led-light.led-3 {
    top: 400px;
    right: 20px;
  }
  
  .led-light.led-4 {
    top: 100px;
    right: 40px;
  }
  
  /* === HERO CONTENT === */
  .content-section {
    padding: 50px 20px 60px 20px;
  }
  
  .content-section h1 { 
    font-size: 28px;
    white-space: normal;
    line-height: 1.2;
  }
  
  .content-section p {
    font-size: 13px;
    max-width: 100%;
  }
  
  .micro {
    font-size: 9px;
    letter-spacing: 3px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .hero-btn {
    padding: 14px 24px;
    font-size: 10px;
    justify-content: center;
    width: 100%;
  }
  
  /* === BRANDS === */
  .brands-section {
    padding: 60px 0;
  }
  
  .brands-track {
    gap: 40px;
  }
  
  .brand-item img {
    height: 40px;
  }
  
  /* === CARS === */
  .cars-section {
    padding: 60px 0;
  }
  
  .cars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .car-card {
    border-radius: 10px;
  }
  
  .car-image img {
    height: 200px;
  }
  
  .car-info {
    padding: 20px;
  }
  
  .car-name {
    font-size: 20px;
  }
  
  .car-specs {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .car-specs span {
    font-size: 11px;
  }
  
  .car-price {
    font-size: 22px;
  }
  
  .car-btn {
    padding: 8px 18px;
    font-size: 10px;
  }
  
  .cars-cta {
    margin-top: 40px;
  }
  
  .btn-view-all {
    padding: 14px 30px;
    font-size: 11px;
    width: 100%;
    text-align: center;
  }
  
  /* === FEATURES === */
  .features-section {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .feature-card h3 {
    font-size: 18px;
  }
  
  .feature-card p {
    font-size: 13px;
  }
  
  /* === STATS === */
  .stats-section {
    padding: 50px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .stat-label {
    font-size: 11px;
    letter-spacing: 1px;
  }
  
  /* === TESTIMONIALS === */
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-stars {
    font-size: 16px;
  }
  
  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .author-name {
    font-size: 14px;
  }
  
  .author-title {
    font-size: 11px;
  }
  
  .testimonial-author img {
    width: 45px;
    height: 45px;
  }
  
  /* === CTA === */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .cta-content p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .cta-btn {
    padding: 14px 30px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }
  
  .cta-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-info-item {
    font-size: 13px;
    justify-content: center;
  }
  
  /* === FOOTER === */
  .footer {
    padding: 50px 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-bottom: 40px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo span {
    font-size: 18px;
  }
  
  .footer-brand p {
    font-size: 13px;
    max-width: 300px;
    margin: 0 auto 20px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-social a {
    width: 38px;
    height: 38px;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-contact li {
    justify-content: center;
    font-size: 13px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px 0;
  }
  
  .footer-bottom p {
    font-size: 12px;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-bottom-links a {
    font-size: 11px;
  }
}

/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .auto-bar {
    height: 60px;
  }
  
  .name {
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .config-btn {
    padding: 8px 12px;
    font-size: 8px;
  }
  
  .hero-video {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  
  .content-section {
    padding: 40px 15px 50px 15px;
  }
  
  .content-section h1 { 
    font-size: 24px; 
  }
  
  .content-section p {
    font-size: 12px;
  }
  
  .led-light {
    width: 70px;
    height: 70px;
  }
  
  .led-light.led-1 {
    top: 15px;
    left: 10px;
  }
  
  .led-light.led-2 {
    top: 70px;
    left: 25px;
  }
  
  .led-light.led-3 {
    top: 15px;
    right: 10px;
  }
  
  .led-light.led-4 {
    top: 70px;
    right: 25px;
  }
  
  .scroll-indicator {
    bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .brands-section,
  .cars-section,
  .features-section,
  .testimonials-section,
  .cta-section {
    padding: 50px 0;
  }
  
  .stats-section {
    padding: 40px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  .car-image img {
    height: 180px;
  }
  
  .car-name {
    font-size: 18px;
  }
  
  .car-price {
    font-size: 20px;
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
  
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-grid {
    gap: 30px;
  }
}

/* =========================
   RESPONSIVE - VERY SMALL
========================= */
@media (max-width: 360px) {
  .container {
    padding: 0 15px;
  }
  
  .name {
    font-size: 11px;
  }
  
  .config-btn {
    display: none;
  }
  
  .content-section h1 {
    font-size: 22px;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-btn {
    padding: 12px 20px;
    font-size: 9px;
  }
}

/* =========================
   FIX - MOBILE
========================= */
@media screen and (max-width: 768px) {
  
  /* === 1. حذف SCROLL INDICATOR === */
  .scroll-indicator {
    display: none !important;
  }

  /* === 2. حذف LED وتأثيره === */
  .led-container {
    display: none !important;
  }

  /* === 3. إزالة الطبقة السوداء فوق الفيديو === */
  .video-section::after {
    display: none !important;
  }

  /* === HERO BUTTONS === */
  .content-section .hero-buttons {
    width: 80% !important;
    max-width: 280px !important;
  }

  .content-section .hero-buttons .hero-btn {
    padding: 12px 20px !important;
    font-size: 10px !important;
  }
  
}

/* =========================
   HERO TRUST LINE
========================= */
.hero-trust {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust .dot {
  color: #c8d300;
  opacity: 0.9;
}

/* =========================
   HAMBURGER MENU
========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(200, 211, 0, 0.3);
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  border-color: #c8d300;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #c8d300;
  transition: all 0.3s ease;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(200, 211, 0, 0.1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-header .brand {
  gap: 10px;
}

.mobile-menu-header .name {
  font-size: 14px;
  letter-spacing: 2px;
}

.mobile-menu-header .diamond-icon {
  width: 8px;
  height: 8px;
}

.menu-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  background: #c8d300;
  border-color: #c8d300;
  color: #000;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

.mobile-menu-links a {
  display: block;
  padding: 18px 30px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-menu-links a:hover {
  color: #c8d300;
  background: rgba(200, 211, 0, 0.05);
  border-left-color: #c8d300;
}

.mobile-menu-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #c8d300;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-cta:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(200, 211, 0, 0.3);
}

.mobile-cta svg {
  width: 18px;
  height: 18px;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Show hamburger on mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  .config-btn {
    display: none;
  }
}

/* =========================
   TESTIMONIAL AVATAR FIX
========================= */
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8d300 0%, #a8b300 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

@media (max-width: 768px) {
  .author-avatar {
    width: 45px;
    height: 45px;
  }
  
  .author-avatar svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================
   FIX - CARS CTA CENTER
========================= */
.cars-cta {
  text-align: center !important;
  margin-top: 60px;
  width: 100%;
  display: block;
}

.cars-section .cars-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cars-cta .btn-view-all {
  margin: 0 auto;
}

/* =========================
   FIX - CARS CTA CENTER (FINAL)
========================= */
.cars-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cars-section .cars-grid {
  width: 100%;
}

.cars-cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 60px;
  grid-column: 1 / -1;
}

.cars-cta .btn-view-all {
  display: inline-block;
  margin: 0 auto;
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #c8d300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 211, 0, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #dae630;
  box-shadow: 0 6px 30px rgba(200, 211, 0, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #000;
}

/* Animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #c8d300;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* =========================
   BACK TO TOP BUTTON
========================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #c8d300;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #dae630;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 211, 0, 0.4);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================
   BACK TO TOP BUTTON
========================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #c8d300;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #dae630;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 211, 0, 0.4);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #c8d300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 211, 0, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #dae630;
  box-shadow: 0 6px 30px rgba(200, 211, 0, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #000;
}

/* Animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #c8d300;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* =========================
   COOKIE CONSENT BANNER
========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  border-top: 1px solid rgba(200, 211, 0, 0.2);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hide {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.cookie-text svg {
  width: 32px;
  height: 32px;
  fill: #c8d300;
  flex-shrink: 0;
}

.cookie-text p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #c8d300;
  color: #000;
}

.cookie-btn.accept:hover {
  background: #dae630;
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.cookie-btn.decline:hover {
  background: rgba(255,255,255,0.1);
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cookie-text {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-text svg {
    width: 28px;
    height: 28px;
  }
  
  .cookie-text p {
    font-size: 13px;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    padding: 12px 20px;
  }
}