.custom-site-footer {
  background: var(--hdr-bg);
  color: var(--hdr-text);
  padding-top: 60px;
}

/* Layout */
.footer-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Columns */
.footer-col {
  display: flex;
  flex-direction: column;
  justify-self: center;
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--hdr-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-text a {
  position: relative;
  display: inline-block;
  color: var(--hdr-text);
  font-size: var(--hdr-nav-size);
  transition: color var(--transition), transform var(--transition);
  will-change: transform;
  text-decoration: none;
}

.footer-links a::after,
.footer-text a::after,
.footer-title a::after {
  content: '';
  display: block;
  position: relative;
  width: 0;
  height: 1px;
  background: var(--hdr-text-hover);
  transition: width var(--transition);
}

.footer-links a:hover::after,
.footer-text a:hover::after,
.footer-title a:hover::after {
  width: 100%;
}

.footer-links a:hover,
.footer-text a:hover,
.footer-title a:hover {
  color: var(--hdr-text-hover);
  transform: translateX(6px);
}

/* Text */
.footer-text {
  font-size: 17px;
  line-height: 1.6;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

.services-footer li {
  list-style: none;
}

.services-footer {
  margin: 0;
  padding: 0;
}

/* Wrapper for socials */
.socials_wrap_footer {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  /* Center the icons within their container */
}

.social_item_footer {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.social_item_footer svg {
  display: block;
  margin: auto;
  width: 18px;
  height: 18px;
  fill: var(--hdr-text);
  transition: fill 0.3s ease;
}

.social_item_footer:hover {
  transform: translateY(-3px);
}

.social_item_footer:hover svg {
  fill: #fff;
}

.social_item_footer:nth-child(1):hover {
  background: #0A66C2;
}

.social_item_footer:nth-child(2):hover {
  background: #E4405F;
}

.social_item_footer:nth-child(3):hover {
  background: #1877F2;
}


.social_item_footer:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 90%;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .custom-site-footer {
    text-align: start;
  }
}