/* ICTech Mobilax-style footer */
.ictech-footer {
  --ft-bg: #1a1e26;
  --ft-bg-mid: #232833;
  --ft-bg-strip: #2a3344;
  --ft-text: #c5cad3;
  --ft-muted: #8b93a2;
  --ft-white: #ffffff;
  --ft-accent: var(--ictech-primary, #2937E9);
  background: var(--ft-bg);
  color: var(--ft-text);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0;
}
.ictech-footer a {
  color: var(--ft-text);
  text-decoration: none;
}
.ictech-footer a:hover { color: var(--ft-white); }

.ictech-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.ictech-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
  padding: 42px 0 36px;
}
.ictech-footer__col-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ft-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ictech-footer__col-title::before {
  content: "";
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: var(--ft-accent);
  flex: 0 0 auto;
}
.ictech-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ictech-footer__list li { margin: 0 0 8px; }
.ictech-footer__list a { color: var(--ft-text); }
.ictech-footer__list a:hover { color: var(--ft-white); }

.ictech-footer__meta {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ictech-footer__address {
  color: var(--ft-muted);
  font-size: 13px;
  line-height: 1.55;
}
.ictech-footer__address strong {
  display: block;
  color: var(--ft-white);
  font-size: 14px;
  margin-bottom: 4px;
}
.ictech-footer__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ictech-footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--ft-bg-mid);
  color: var(--ft-white) !important;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.ictech-footer__pill:hover {
  border-color: var(--ft-accent);
  background: #2b3140;
}
.ictech-footer__pill span { font-weight: 600; opacity: .85; }
.ictech-footer__pill-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: block;
}
.ictech-footer__pill--muted {
  opacity: .75;
  cursor: default;
  pointer-events: none;
}

.ictech-footer__contact {
  background: var(--ft-bg-strip);
  padding: 16px 0;
}
.ictech-footer__contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  text-align: center;
  color: var(--ft-white);
  font-size: 14px;
}
.ictech-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9eb0ff !important;
  font-weight: 800;
  font-size: 16px;
}
.ictech-footer__phone:hover { color: #c5d0ff !important; }
.ictech-footer__phone svg {
  width: 18px; height: 18px;
  color: var(--ft-accent);
}

.ictech-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0 22px;
  text-align: center;
  color: var(--ft-muted);
  font-size: 12px;
}
.ictech-footer__bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 10px;
}
.ictech-footer__bottom-links a { color: var(--ft-muted); font-size: 12px; }
.ictech-footer__bottom-links a:hover { color: var(--ft-white); }

.ictech-footer__top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--ictech-btn-bg, var(--ictech-primary, #2937E9));
  color: #fff;
  box-shadow: var(--ictech-btn-shadow, 0 8px 20px rgba(41, 55, 233, .28));
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  z-index: 10060;
  display: none;
}
.ictech-footer__top.is-visible { display: inline-flex; align-items: center; justify-content: center; }
.ictech-footer__top:hover { background: var(--ictech-btn-bg-hover, #1f2bd0); color: #fff; }
.ictech-footer__top:focus-visible {
  outline: none;
  box-shadow: var(--ictech-btn-focus, 0 0 0 3px rgba(41, 55, 233, .28));
}

@media (max-width: 960px) {
  .ictech-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .ictech-footer__cols { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .ictech-footer__meta { align-items: flex-start; }
}
