/* =========================
   FOOTER BASE
========================= */

.nhs-footer {
  background: white;
  color: black;
  padding-top: 50px;
  font-family: Poppins;
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 46px;
  padding: 0px 30px;
}

/* =========================
   BRAND
========================= */

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #1A1F26;
  margin-top: 12px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

/* =========================
   SOCIAL
========================= */

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #FFB000;     /* orange circle */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social img {
  width: 65%;              /* icon size inside circle */
  height: 65%;
  object-fit: contain;     /* NEVER crop */
  background: none;        /* remove bg from image */
  padding: 0;              /* remove padding */
}


.footer-social img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

/* =========================
   COLUMNS
========================= */

.footer-col h4 {
  color: black;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: #060404;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: black;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background: #D71920;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 865px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-col a {
    font-weight: 400;
  }

  .footer-bottom {
    font-size: 12px;
    font-weight: 400;
    padding: 12px;
  }

  .footer-brand p {
    font-weight: 400;
    font-size: 12px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col a {
    font-size: 15px;
  }
}
