/* ===== Outer background (optional full-width) ===== */
.footer-outer {
  background: linear-gradient(90deg, #0e2ea9 0%, #2f5ef6 100%);
  color: #fff;
}

/* ===== Footer layout ===== */
.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 80px;
  margin-top: 7%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Top row with 4 separate children */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---- Fixed widths on desktop ---- */
.footer-brand {
  flex: 0 0 180px;
}
.footer-services {
  flex: 0 0 166 px;
}
.footer-quicklinks {
  flex: 0 0 100px;
}
.footer-contact {
  flex: 0 0 180px;
}

/* ---- Brand block ---- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.footer-desc {
  font-size: 11px;
  line-height: normal;
  color: #e8edff;
  margin-bottom: 40px;
}

/* ---- Socials: 34x34 rounded background ---- */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.icons{
  color: #fff;
}

/* ---- Lists/links columns ---- */
.footer-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-link {
  padding-bottom: 12px;
  font-size: 14px;
  color: #fff;
  opacity: 0.95;
  text-decoration: none;
}

.footer-link + .footer-link {
  margin-top: 10px;
}

/* ---- Contact column ---- */
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  padding-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

/* ---- Bottom line ---- */
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: center;
}

.footer-line {
  flex: 1;
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
}

.footer-copy {
  white-space: nowrap;
  font-size: 12px;
  color: #e0e6ff;
}

/* ===== Responsive: below 1024px =====
   - Brand and Contact stack full width
   - Services + Quick Link stay side-by-side (50% each)
===================================================== */
@media (max-width: 1023px) {
  .footer {
    padding: 32px 20px;
  }
  .footer-heading {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .footer-link {
    font-size: 12px;
  }
  .footer-top {
    gap: 30px;
  }
  .footer-desc {
    font-size: 11px;
    margin-bottom: 20px;
    max-width: 180px;
  }
  .footer-contact-item {
  font-size: 12px;
  }

  .footer-brand,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-services {
    flex: 1 1 calc(50% - 20px);
    max-width: 150px;
  }
  .footer-top {
    justify-content: normal;
  }
  .footer-quicklinks {
    flex: 1 1 calc(50% - 20px);
    max-width: 100px;
  }
}

/* ===== Small phones ===== */
@media (max-width: 480px) {
  .footer-copy {
    font-size: 10px;
  }
  .footer-socials {
    gap: 8px;
  }
  .footer-logo {
    max-width: 150px;
  }
  .footer-socials {
    gap: 8px;
  }
  .footer-logo {
    max-width: 150px;
  }
}

@media (max-width: 1023px) and (min-width: 425px) {
  .footer-services {
    padding-right: 105px;
  }
}

.a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}


.a[href^="tel"] {
  pointer-events: none;
}
