/* ═══════════════════════════════════════════════════════════════
   Eagle Lights — Hero Banner Component (BomaBox-style)
   ═══════════════════════════════════════════════════════════════ */

.el-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: Lato, sans-serif;
}

.el-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.el-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.10) 100%);
  z-index: 1;
}

.el-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px;
}

.el-hero__content {
  max-width: 52%;
}

.el-hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
  color: #FFFFFF;
  margin: 0 0 14px 0;
}

.el-hero__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.el-hero__support {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}

/* CTAs */
.el-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.el-hero__cta-primary {
  display: inline-block;
  background: #E65C00;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.el-hero__cta-primary:hover { background: #C44A00; }

.el-hero__cta-secondary {
  display: inline-block;
  background: transparent;
  color: #E65C00;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 14px;
  border: 2px solid #E65C00;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}
.el-hero__cta-secondary:hover {
  background: #E65C00;
  color: #FFF;
  border-color: #E65C00;
}

/* Trust bullets */
.el-hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.el-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.el-hero__trust-icon {
  font-size: 16px;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .el-hero { min-height: 400px; }
  .el-hero__content { max-width: 65%; }
  .el-hero h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  .el-hero { min-height: 360px; }
  .el-hero__inner { padding: 48px 24px; }
  .el-hero__content { max-width: 100%; }
  .el-hero h1 { font-size: 32px; }
  .el-hero__sub { font-size: 17px; }
  .el-hero__trust { gap: 16px; }
  .el-hero__trust-item { font-size: 13px; }
}

@media (max-width: 480px) {
  .el-hero { min-height: 320px; }
  .el-hero__inner { padding: 36px 20px; }
  .el-hero h1 { font-size: 32px; }
  .el-hero__ctas { flex-direction: column; align-items: flex-start; }
}
