/* ============================================
   ORION IPJ — Landing Page (index.css)
   ============================================ */

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
 
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,85,125,0.4) 0%, rgba(3,103,142,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}

.hero-content h1 {
  font-family: Montserrat;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ─── ABOUT ─── */
.about { background: var(--white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card { display: flex; flex-direction: column; }

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card h3 {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── SERVICES ─── */
.services-section {
  position: relative;
  background: var(--navy);
  padding: 0;
}

.wave-top { width: 100%; line-height: 0; overflow: hidden; }
.wave-top svg { display: block; width: 100%; }

.services-inner { padding: 60px 0 80px; }

.services-section .section-eyebrow { background: var(--white); }

.service-card { display: flex; flex-direction: column; }

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ─── RESPONSIVE — TABLET (max 900px) ─── */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ─── RESPONSIVE — MOBILE (max 600px) ─── */
@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-icon,
  .service-icon {
    width: 64px;
    height: 64px;
  }

  .wave-top svg { height: 40px; }
}
