/* ============================================================
   HOME.CSS — MNB Excavation
   Home page specific styles
   ============================================================ */

/* ── Hero ── */
.hero-home {
  margin-top: 0;
  height: 100vh;
  min-height: 600px;
  position: relative;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}
.hero-content {
  z-index: 4;
  padding-top: var(--nav-h);
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.5rem;
  background: rgba(232,96,10,0.15);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(232,96,10,0.3);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0,0,0,0.6);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.hero-accent {
  color: var(--clr-accent);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-btns .btn { font-size: 1rem; padding: 1rem 2.2rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero-badges i { color: var(--clr-accent); }

/* ── Services Grid ── */
.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ── Why Section ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.why-image:hover img { transform: scale(1.04); }
.why-image::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  right: 20px; bottom: 20px;
  border: 3px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.why-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  line-height: 1.3;
}
.why-badge i { font-size: 1.3rem; margin-bottom: 0.2rem; }
.why-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #444;
}
.why-list i {
  color: var(--clr-accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Process Strip ── */
.process-strip { background: var(--clr-surface-light); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,48,135,0.12);
  line-height: 1;
  margin-bottom: -0.5rem;
}
.process-icon {
  font-size: 2rem;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
  display: block;
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--clr-navy);
}
.process-step p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}
.process-arrow {
  align-self: center;
  color: var(--clr-accent);
  font-size: 1.3rem;
  opacity: 0.4;
  padding-bottom: 2rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .home-services { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image img { height: 360px; }
  .why-image::before { display: none; }
  .process-arrow { display: none; }
  .process-steps { gap: 1rem; }
  .process-step { min-width: 140px; }
}
@media (max-width: 768px) {
  .home-services { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-btns .btn { padding: 0.9rem 1.5rem; }
}
