/* Hero Section Only */
/*----------------------------------------*/
/*              Hero Section              */
/*----------------------------------------*/
.home-hero {
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: clamp(20px, 2vw, 30px);
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.2;
  font-family: "Satoshi-regular";
}

.hero-content p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.2;
  max-width: 600px;
}

/*----------------------------------------*/
/*             Section Banner             */
/*----------------------------------------*/
.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
  padding: 40px 0;
}

.banner-content {
  flex: 1;
}

.banner-content.center-content {
  text-align: center;
}

.banner-content-right {
  order: 1;
}

.banner-img-wrapper {
  flex: 1;
  position: relative;
  max-width: 500px;
}

.banner-img-wrapper-left {
  order: 0;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-img-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #151515;
  border-radius: 12px;
  z-index: -1;
}

/*----------------------------------------*/
/*         Responsive Adjustments         */
/*----------------------------------------*/
@media (max-width: 768px) {
  .banner-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banner-img-wrapper,
  .banner-img-wrapper-left {
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .banner-content,
  .banner-content-right {
    order: 1;
    width: 100%;
  }

  .banner-img-bg {
    top: 0;
    left: 0;
  }
}

/*----------------------------------------*/
/*             Mission Form               */
/*----------------------------------------*/
.mission-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

/*----------------------------------------*/
/*     Fix for Consultation Button        */
/*----------------------------------------*/
.banner-content.center-content .app-btn {
  display: inline-block;
  margin: 1rem auto 0;
}

.banner-content.center-content {
  text-align: center;
}

.banner-content.center-content a {
  display: inline-block;
}

.banner-content.center-content .app-btn {
  display: inline-block;
  margin: 1rem auto 0;
  text-align: center;
}
