.footer {
  --footer-bg: var(--bg-black, v.$text-black);
  --footer-text-color: v.$text-white;
  --footer-link-color: var(--primary-red, v.$primary-red);
  --footer-link-hover-color: var(--primary-hover, v.$c-ff4d40);
  --footer-sub-menu-color: rgba(238, 48, 36, 0.75);
  --footer-social-bg: v.$c-1a1a20;
  --footer-social-hover-bg: var(--primary-red, v.$primary-red);
  --footer-border-color: rgba(255, 255, 255, 0.15);
  --footer-transition: var(--transition, all 0.3s ease);
  background-color: var(--footer-bg);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 72px;
}

.footer-grid .footer-col-1,
.site-links-grid {
  width: 50%;
}

.footer-col-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-footer {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-line {
  color: var(--footer-text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.contact-line.red-text {
  color: var(--footer-link-color);
}

.site-links-grid {
  display: flex;
  text-align: left;
}

.site-links-grid .link-col {
  width: 50%;
}

.link-col .menu-footer-1-container .menu,
.menu-footer-2-container,
.menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-col h4,
.link-col .widget-title,
.link-col .widget h2,
.link-col .widget h4 {
  margin-bottom: 8px;
  color: var(--footer-text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.link-list,
.link-col ul {
  list-style: none;
}

.link-item a,
.link-col ul li a {
  display: inline-block;
  color: var(--footer-link-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
  transition: var(--footer-transition);
}

.link-item a:hover,
.link-col ul li a:hover {
  color: var(--footer-link-hover-color);
  transform: translateX(2px);
}

/* WordPress custom menu overrides (for static list styling) */
/* .link-col .sub-menu {
  position: static !important;
  display: block !important;
  width: auto !important;
  margin-top: 4px !important;
  padding: 4px 0 4px 16px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
} */
/* .link-col .sub-menu li a {
  color: var(--footer-sub-menu-color) !important;
  font-size: 13px !important;
} */
/* .link-col .sub-menu li a:hover {
  color: var(--footer-link-hover-color) !important;
} */
.footer-bottom {
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid var(--footer-border-color);
}

.social-bar {
  text-align: center;
  padding: 20px 0;
}

.social-icon {
  background-color: var(--footer-social-bg);
  border-radius: 6px;
  color: var(--footer-text-color);
  font-size: 16px;
  text-decoration: none;
  transition: var(--footer-transition);
  padding: 10px 20px;
}

.social-icon:hover {
  background-color: var(--footer-social-hover-bg);
  color: var(--footer-text-color);
  transform: scale(1.1);
}

.copyright-text {
  color: var(--footer-text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}

@media (min-width: 1024px) and (max-width: 1439.98px) {
  .footer .container {
    padding: 72px 60px !important;
  }
  .footer-grid {
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .footer .container {
    padding: 72px 32px !important;
  }
  .footer-grid {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .footer-grid .footer-col-1,
  .site-links-grid {
    width: 100%;
  }
  .footer-col-1 {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .footer .container {
    padding: 72px 20px !important;
  }
  .footer-grid {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .footer-grid .footer-col-1,
  .site-links-grid {
    width: 100%;
  }
  .footer-col-1 {
    align-items: center;
    text-align: center;
  }
  .site-links-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .site-links-grid .link-col {
    width: 100%;
  }
}
