/* Commercial hero */

.sa-hero-commercial {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 0;
  min-height: 600px;
  display: block; /* overridden on mobile */
}

/* Background Video Container */
.sa-hero-commercial .sa-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: #000; /* fallback to avoid gray bars if any */
}

/* Video Element */
.sa-hero-commercial .sa-hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content Container */
.sa-hero-commercial .sa-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem;
  position: relative;
  z-index: 2;
}

.commercial-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem;
}

/* Flex Layout */
.sa-hero-commercial .sa-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

/* Text Column */
.sa-hero-commercial .sa-hero-text {
  flex: 1;
  min-width: 300px;
}

/* Headings */
.sa-hero-commercial .sa-hero-text h1 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #66ccff;
  margin-bottom: .5rem;
}

.sa-hero-commercial .sa-hero-text h2 {
  font-size: 2.25rem;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
  .sa-hero-commercial {
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
  }

  .sa-hero-commercial .sa-container {
    width: 100%;
  }

  .sa-hero-commercial .sa-hero-video-bg video {
    object-fit: cover;
    object-position: top center;
  }

  .sa-hero-commercial .sa-hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 2rem 1rem;
  }

  .sa-hero-commercial .sa-hero-text {
    text-align: center;
  }

  .sa-hero-commercial .sa-hero-text h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .sa-hero-commercial .sa-hero-text h2 {
    font-size: 1.75rem;
  }
}