:root {
  --footer-bg: #000000;
  --muted: #dcdcdc;
  --accent: #83BFFF;
  --text: #ffffff;
  --gap: 24px;
  --max-width: 1200px;
  --footer-padding: 48px;
  --radius: 12px;
}


.hm-footer-cont {
  background-color: var(--footer-bg);
  color: var(--text);
  padding: var(--footer-padding) 16px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.hm-logo-cont>img{
  width: 50%;
}


.inner-hm-footer-cont {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  padding-bottom: 18px;
}


.hm-logo-cont {
  flex: 1 1 36%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-heading {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.6px;
}

.logo-para {
  font-size: 20px;
  color: var(--text);
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.45;
}


.hm-social-cont {
  display: flex;
  gap: 24px;
  margin-top: 6px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.social-link:focus {
  outline: 3px solid rgba(131, 191, 255, 0.24);
  outline-offset: 2px;
}


.inner-social-imgs {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  filter: none;
  gap: 20px;
  transition: transform 160ms ease, filter 160ms ease;
}

.social-link:hover .inner-social-imgs,
.social-link:focus .inner-social-imgs {
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
}


.hm-nav-delts-cont {
  display: flex;
  gap: 36px;
  flex: 1 1 48%;
  justify-content: flex-end;
  align-items: flex-start;
}


.inner-hm-nav-delts-cont {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.hm-com-head {
  font-size: 22px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
}


.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.footer-links a.hm-com-head-2 {
  text-decoration: none;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  gap: 10px;
  transition: color 140ms ease, transform 120ms ease;
}

.footer-links a.hm-com-head-2:hover,
.footer-links a.hm-com-head-2:focus {
  color: var(--text);
  transform: translateX(4px);
  outline: none;
  text-decoration: none;
}


.hm-addr-cont {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hm-contact-address {
  font-style: normal;
  margin: 0;
  padding: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.footer-phone,
.footer-email {
  color: var(--muted);
  text-decoration: none;
  font-size: 18px;
}

.footer-phone:hover,
.footer-email:hover,
.footer-phone:focus,
.footer-email:focus {
  color: var(--text);
  text-decoration: underline;
}

.hm-hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px auto;
  width: 90%;
  max-width: var(--max-width);
  box-sizing: border-box;
}

.hm-footer-cop-para {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: center;
  padding: 12px 8px 0 8px;
  margin: 0 auto;
  max-width: var(--max-width);
  box-sizing: border-box;
}

.hm-com-head,
.logo-heading {
  line-height: 1.1;
}

@media (max-width: 1440px) {
  .inner-hm-footer-cont {
    gap: 20px;
  }

  .logo-heading {
    font-size: 30px;
  }
}


@media (max-width: 1200px) {
  .inner-hm-footer-cont {
    max-width: 1100px;
  }

  .hm-nav-delts-cont {
    gap: 28px;
  }

  .logo-heading {
    font-size: 28px;
  }
}


@media (max-width: 992px) {
  .inner-hm-footer-cont {
    align-items: flex-start;
  }

  .hm-nav-delts-cont {
    gap: 18px;
  }

  .hm-logo-cont {
    flex: 1 1 40%;
  }

  .hm-nav-delts-cont {
    flex: 1 1 58%;
  }

  .footer-links a.hm-com-head-2,
  .footer-phone,
  .footer-email {
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .inner-hm-footer-cont {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .hm-logo-cont {
    text-align: center;
    align-items: center;
  }

  .hm-nav-delts-cont {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 8px;
  }

  .inner-hm-nav-delts-cont,
  .hm-addr-cont {
    align-items: center;
    text-align: center;
  }

  .hm-addr-cont {
    margin-top: 6px;
  }

  .hm-footer-cop-para {
    font-size: 13px;
    padding-bottom: 14px;
  }
}


@media (max-width: 420px) {
  .hm-nav-delts-cont {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }

  .hm-logo-cont {
    gap: 8px;
  }

  .logo-heading {
    font-size: 22px;
  }

  .logo-para {
    font-size: 14px;
  }

  .hm-com-head {
    font-size: 16px;
  }

  .footer-links a.hm-com-head-2 {
    font-size: 13px;
  }

  .footer-phone,
  .footer-email {
    font-size: 13px;
  }

  .hm-footer-cop-para {
    font-size: 12px;
    padding-bottom: 10px;
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}