:root {
  --primary: #f97316;
  --secondary: #eab308;
  --bg: #f9fafb;
  --dark: #1f2937;
  --light: #ffffff;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* HERO SECTION */
.hero {
  position: relative;
  background-image: url(https://www.web2carz.com/images/articles/202402/cars_1709132431_600x275.jpg);
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31,41,55,0.85), rgba(31,41,55,0.6));
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;

}

.hero-text {
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f3f4f6;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--light);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* 🌐 MOBILE RESPONSIVE STYLING */
@media (max-width: 992px) {
  .hero {
    height: 70vh;
  }

  .hero-content {
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 60vh;
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(31,41,55,0.9), rgba(31,41,55,0.6));
  }

  .hero-content {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    font-size: 0.95rem;
  }
}
