/* =============================================
   EAA INDUSTRIES PAGE — industries.css
   ============================================= */

/* ── HERO ── */
.ind-hero {
  background: var(--off-white);
  padding: 72px 0 0;
  text-align: center;
}

.ind-hero-inner {
  padding-bottom: 48px;
}

.ind-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ind-hero p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.ind-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ind-solid {
  height: 52px;
  padding: 0 28px;
  background: var(--green-dark);
  color: #fff;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  transition: background 0.3s;
}
.btn-ind-solid:hover {
  background: #163e25;
}

.btn-ind-green {
  height: 52px;
  padding: 0 28px;
  background: var(--green-bright);
  color: #fff;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  transition: background 0.3s;
}
.btn-ind-green:hover {
  background: #2d9a5a;
}

/* Full-width hero image sits flush below the text block */
.ind-hero-img-wrap {
  width: 100%;
  line-height: 0; /* removes inline-block gap under img */
}

.ind-hero-img-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .ind-hero {
    padding-top: 48px;
  }
  .ind-hero h1 {
    font-size: 30px;
  }
  .ind-hero-img-wrap img {
    height: 260px;
  }
}

/* ── OVERVIEW ── */
.ind-overview {
  background: var(--off-white);
  padding: 80px 0 60px;
  text-align: center;
}
.ind-overview-inner {
  max-width: 700px;
  margin: 0 auto;
}
.ind-overview p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.ind-overview p:last-child {
  margin-bottom: 0;
}

/* ── SECTORS ── */
.ind-sectors {
  background: var(--off-white);
  padding: 0 0 80px;
}
.ind-sector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.ind-sector:last-child {
  border-bottom: 1px solid var(--border);
}
.ind-sector-text {
  padding: 64px 60px 64px 0;
}
.ind-sector.reverse .ind-sector-text {
  padding: 64px 0 64px 60px;
  order: 2;
}
.ind-sector.reverse .ind-sector-img {
  order: 1;
}
.ind-sector-img {
  overflow: hidden;
  height: 420px;
}
.ind-sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ind-sector:hover .ind-sector-img img {
  transform: scale(1.04);
}
.ind-sector-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.ind-sector-text > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.ind-sector-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.ind-sector-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ind-sector-list li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── WHY EXPERTISE ── */
.ind-why {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.ind-why-inner {
  max-width: 660px;
  margin: 0 auto;
}
.ind-why h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.ind-why p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.ind-why p:last-child {
  margin-bottom: 0;
}

/* ── PROJECTS ── */
.ind-projects {
  background: var(--off-white);
  padding: 80px 0 100px;
}
.ind-projects-title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
}
.ind-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ind-project-card {
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ind-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}
.ind-project-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.ind-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ind-project-card:hover .ind-project-img img {
  transform: scale(1.05);
}
.ind-project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 22px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
}
.ind-project-overlay h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35;
}
.ind-project-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .ind-sector {
    grid-template-columns: 1fr;
  }
  .ind-sector-text,
  .ind-sector.reverse .ind-sector-text {
    padding: 48px 0;
    order: 2;
  }
  .ind-sector.reverse .ind-sector-img {
    order: 1;
  }
  .ind-sector-img {
    height: 300px;
  }
  .ind-projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .ind-sector-text h2 {
    font-size: 24px;
  }
  .ind-projects-grid {
    grid-template-columns: 1fr;
  }
  .ind-project-img {
    height: 260px;
  }
}
