/* Hero Section */
.hero-section {
  background: #ff7900;
  border-radius: 0 0 24px 24px;
  margin: 0;
  padding: 40px 0;
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-right {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-black {
  color: #000;
  display: block;
  font-weight: 800;
}

.title-white {
  color: #fff;
  display: block;
  font-weight: 800;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
}

.btn-hero {
  margin-top: 1.5rem;
}

.btn-hero a {
  display: inline-block;
  background: #fff;
  color: #ff7900;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-hero a:hover {
  background: #000;
  color: #ff7900;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tablet Styles */
@media (max-width: 991px) {
  .hero-section {
    min-height: 400px;
    padding: 30px 0;
    margin-top: 3rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-description {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .btn-hero a {
    padding: 10px 28px;
    font-size: 0.95rem;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .hero-section {
    min-height: 350px;
    padding: 25px 0;
    border-radius: 0;
    text-align: center;
  }

  .hero-right {
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 90%;
  }

  .btn-hero a {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .title-black,
  .title-white {
    display: block;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .btn-hero a {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}
