/* ==========================================================================
   Footer Styling
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  padding: 80px 2rem 0 ;
  position: relative;
}


.site-footer .container {
  margin: 0 auto;
  padding: 0;
}
/* Logo & Description Block */
.footer-brand-col {
  max-width: 260px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #E8E7F0;
padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon img{
  height: 36px;
}

.footer-social-icon:hover {
 
  transform: translateY(-3px);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

/* Navigation Columns */
.footer-nav-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #191B24;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0.75rem;
}

.footer-nav-list li:last-child {
  margin-bottom: 0;
}

.footer-nav-list a {
  font-size: 1rem;
  color: #424656;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}

.footer-nav-list a:hover {
  color: var(--primary-blue);
}

.footer-nav-active {
  color: #424656!important;
  font-weight: 700 !important;
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #424656;
}

.footer-divider{
  width: 80%;
  border: 1px solid #424656;
   margin-top: 60px;
}

/* Bottom Bar */
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
    margin-bottom: 60px;
    width: 80%;
}

.footer-copyright {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-policies {
  display: flex;
  gap: 1.5rem;
}

.footer-policies a {
   font-size: 0.825rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policies a:hover {
  color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 991px) {
  .site-footer {
    padding: 60px 2rem 0;
  }

  .footer-brand-col {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 40px;
  }

  .footer-policies {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
