/* Shared IndPlas footer (from indexNew.html) — safe for all inner pages */
:root {
  --in-blue: #0070BB;
  --in-dark: #091E3E;
}

.inx-container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.inx-footer {
  background:
    linear-gradient(135deg, rgba(0, 112, 187, 0.92) 0%, rgba(9, 30, 62, 0.95) 42%, rgba(46, 155, 77, 0.88) 100%),
    linear-gradient(160deg, #07162c 0%, var(--in-dark) 55%, #0a2a4a 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.inx-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(183, 204, 73, 0.22), transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(0, 112, 187, 0.35), transparent 50%);
  pointer-events: none;
}

.inx-footer .inx-container {
  position: relative;
  z-index: 1;
}

.inx-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inx-footer__brand img {
  max-width: 160px;
  margin-bottom: 1rem;
  display: block;
  height: auto;
}

.inx-footer__brand p {
  margin: 0;
  line-height: 1.6;
}

.inx-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 1.1rem;
}

.inx-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.inx-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.inx-footer a:hover {
  color: #7ec8f0;
}

.inx-footer__contact p {
  margin: 0 0 0.65rem;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.inx-footer__contact i {
  color: #b7cc49;
  margin-top: 0.2rem;
}

.inx-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

.inx-footer__bottom a {
  color: #7ec8f0;
}

@media (max-width: 1100px) {
  .inx-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .inx-footer {
    padding-top: 3rem;
  }

  .inx-footer__grid {
    grid-template-columns: 1fr;
  }

  .inx-container {
    width: min(1180px, calc(100% - 1.5rem));
  }
}
