/* ==========================================================================
   FOOTER.CSS - EXACT FIGMA MATCH
   ========================================================================== */

#colophon.site-footer {
  background-color: #003580 !important;
  color: #ffffff !important;
  padding: 80px 0 0;
  width: 100%;
  display: block;
  border-top: 4px solid #34a853 !important;
}

.footer-widgets-area {
  padding-bottom: 60px;
}

.footer-widgets-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* --- Brand & Shareholders --- */
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 40px;
  background: #ffffff;
  border-radius: 4px;
}

.shareholder-heading {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.shareholder-links {
  text-align: left; /* ✅ ensure left */
  margin: 0;
  padding: 0;
}

.shareholder-links a {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.8;
  text-decoration: none;
  line-height: 1.8;
  display: inline-block;
  transition: opacity 0.3s;
}

.shareholder-links a:hover {
  opacity: 1;
}

/* --- Menus --- */
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 25px;
  color: #ffffff;
  opacity: 0.6;
  text-transform: uppercase;
}

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

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.85;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  opacity: 1;
}

/* --- Bottom Info Bar --- */
.site-info-bar {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-info-flex {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-widgets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-widgets-grid {
    grid-template-columns: 1fr;
    text-align: left; /* ✅ FIXED */
  }

  .footer-widget {
    text-align: left; /* ✅ force left */
  }

  .footer-logo img {
    margin: 0 0 30px; /* ✅ removed center */
  }

  .site-info-flex {
    flex-direction: column;
    gap: 10px;
    text-align: left; /* ✅ FIXED */
  }
}
