.lpu-hero-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  min-height: 700px;
  padding-top: 150px; /* offset for navbars */
  overflow: hidden;
  background-color: var(--lpu-black);
}

.lpu-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.lpu-hero-background.active {
  opacity: 0.8;
}

.lpu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.15) 100%);
  z-index: 2;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(100% - 150px);
}

/* Typography Left Side */
.hero-typography {
  flex: 1;
  max-width: 800px; /* Made wider since form is removed */
}

.hero-main-title {
  font-size: 80px;
  line-height: 0.95;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.orange-text {
  color: var(--lpu-orange);
}

.hero-subtext {
  color: #d1d5db;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-trust-badges {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.big-num {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--lpu-orange);
  line-height: 1.1;
}

.small-txt {
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* Form removed as per request */

@media (max-width: 992px) {
  .hero-layout {
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-main-title {
    font-size: 50px;
  }
}

/* Hero Mobile Responsiveness */
@media (max-width: 768px) {
  .lpu-hero-container {
    height: 100svh;
    min-height: 600px;
    padding-top: 64px;
  }

  .hero-layout {
    height: calc(100% - 80px);
    padding: 0 15px;
    align-items: center;
    justify-content: center;
  }

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

  .hero-main-title {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 15px;
  }

  .hero-subtext {
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-trust-badges {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .big-num {
    font-size: 22px;
  }

  .small-txt {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 2.2rem;
  }
}
