/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 103vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  margin-top: -120px; /* header overlap if used */
}
.hero-bg { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:1; }
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.45); z-index:2; }
.hero-content { position:relative; z-index:3; color:#fff; max-width:900px; padding: 0 20px; }
.hero h1 { font-size: clamp(2rem,5vw,3rem); margin-bottom:0.25em; }
.hero h3 { font-size: clamp(1rem,2.5vw,1.25rem); margin-bottom:0.75em; color: #fff; }
.hero-lead { color: rgba(255,255,255,0.9); font-size:1rem; margin-top:0.5rem; }

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 0.5rem;
}

.btn-primary {
  background: #e26b07;
  color: #fff;
  margin-right: 1em;
}

.btn-secondary {
  border: 2px solid #fff;
  color:  #fff;
  background: transparent;
}

.insight-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.insight-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5em;
}

.insight-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
}

/* ===== Main Section ===== */
.insight-main {
  background: #fff;
  padding: 5em 2em;
}

.insight-main .container {
  max-width: 1100px;
  margin: 0 auto;
}

.insight-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 2.5em;
  margin-bottom: 2em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

.insight-card h2 {
  color: #e26b07;
  margin-bottom: 0.75em;
}

.insight-card p {
  color: #444;
  line-height: 1.7;
}

/* ===== Coming Soon Box ===== */
.coming-soon {
  text-align: center;
  padding: 3em 1em;
  background: linear-gradient(90deg, rgba(226,107,7,0.08), rgba(226,107,7,0.02));
  border-radius: 12px;
  margin-top: 3em;
}

.coming-soon h3 {
  color: #1a365d;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== Reveal Animations ===== */
.reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .insight-card {
    padding: 1.5em;
  }

  .insight-hero {
    height: 45vh;
  }

  .insight-content h1 {
    font-size: 2rem;
  }
}
