/* ===================== IGG Technologies — Redesigned Footer ===================== */

.iggfooter {
  background: linear-gradient(180deg, #100f6d 0%, #0b0a4d 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  overflow: hidden;
}

.iggfooter a {
  text-decoration: none;
  color: inherit;
}

.iggfooter__top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---- Brand column ---- */
.iggfooter__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.iggfooter__logo img {
  width: 170px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.iggfooter__about {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 340px;
  margin-bottom: 22px;
}

.iggfooter__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.iggfooter__contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.iggfooter__contact-list li:last-child {
  margin-bottom: 0;
}

.iggfooter__contact-list i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
}

.iggfooter__contact-list a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s ease;
}

.iggfooter__contact-list a:hover {
  color: #fff;
}

/* ---- Widget titles ---- */
.iggfooter__widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.iggfooter__widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

/* ---- Quick links ---- */
.iggfooter__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.iggfooter__links li {
  margin-bottom: 12px;
}

.iggfooter__links li:last-child {
  margin-bottom: 0;
}

.iggfooter__links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.iggfooter__links a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.25s ease;
}

.iggfooter__links a:hover {
  color: #fff;
  padding-left: 4px;
}

.iggfooter__links a:hover::before {
  transform: translateX(3px);
  color: #fff;
}

/* ---- Offices / address ---- */
.iggfooter__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.iggfooter__address i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  margin-top: 2px;
}

.iggfooter__address strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.iggfooter__address p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ---- Bottom bar ---- */
.iggfooter__bottom {
  padding: 24px 0;
}

.iggfooter__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.iggfooter__copyright a {
  color: #fff;
  font-weight: 600;
}

.iggfooter__bottom-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.iggfooter__bottom-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}

.iggfooter__bottom-links a:hover {
  color: #fff;
}

/* ===================== Responsive ===================== */
@media only screen and (max-width: 991px) {
  .iggfooter {
    padding-top: 60px;
  }

  .iggfooter__about {
    max-width: 100%;
  }

  .iggfooter__bottom-links {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .iggfooter {
    padding-top: 50px;
  }

  .iggfooter__top {
    padding-bottom: 35px;
  }

  .iggfooter__widget {
    margin-top: 10px;
  }

  .iggfooter__bottom .row {
    text-align: center;
  }

  .iggfooter__bottom-links {
    justify-content: center;
    margin-top: 14px;
  }
}

@media only screen and (max-width: 575px) {
  .iggfooter__logo img {
    width: 140px;
  }

  .iggfooter__widget-title {
    font-size: 16px;
  }

  .iggfooter__bottom-links {
    gap: 14px 20px;
  }
}
