/* =============================================
   HERO SECTION (Modern Premium)
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark);
}

/* --- Realistic Background Image with Overlay --- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Using a placeholder for a real construction image. A high quality image will elevate this immensely. */
  background-image: url('https://images.unsplash.com/photo-1541888081622-671b5692dc56?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark overlay for text readability */
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.7) 0%, rgba(11, 15, 25, 0.95) 100%);
}


/* --- Inner layout (Single column centered or focused left) --- */
.hero-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  padding-top: var(--nav-h);
  padding-bottom: 160px; /* Space for absolute stat cards */
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 24px;
  margin-bottom: 32px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(20px); transition: all 0.8s var(--easing);
}
.hero-badge.anim-in { opacity: 1; transform: translateY(0); }
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

/* Title */
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 32px;
  color: var(--white);
}
.hero-word { display: inline-block; opacity: 0; transform: translateY(30px); transition: all 0.8s var(--easing); }
.hero-word.anim-in { opacity: 1; transform: translateY(0); }
.hero-word-accent {
  color: var(--gold);
}

/* Description */
.hero-desc {
  font-size: 20px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 700px;
  font-weight: 400;
  opacity: 0; transform: translateY(20px); transition: all 0.8s var(--easing);
}
.hero-desc.anim-in { opacity: 1; transform: translateY(0); }
.hero-desc strong { color: var(--white); font-weight: 600; }

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px); transition: all 0.8s var(--easing);
}
.hero-ctas.anim-in { opacity: 1; transform: translateY(0); }

/* --- Right column: stat cards (Moved to bottom overlap) --- */
.hero-right {
  position: absolute;
  bottom: -60px; /* Overlap with next section */
  left: 0; right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 30px;
  opacity: 0; transform: translateY(40px); transition: all 0.8s var(--easing);
}
.hero-right.anim-in { opacity: 1; transform: translateY(0); }

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}
.hero-stat-card {
  background: rgba(31, 41, 55, 0.7); /* dark-3 with opacity */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.hero-stat-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
  background: rgba(31, 41, 55, 0.9);
  border-color: rgba(212,160,23,0.3);
}
.hsc-icon {
  width: 48px; height: 48px;
  background: rgba(212,160,23,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
}
.hsc-num { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; }
.hsc-label { font-size: 13px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
