/* --- FOOTER CONTAINER --- */
.footer {
  background: #0f172a; /* Dark Navy Background */
  color: #94a3b8; /* Muted Text Color */
  padding: 60px 0 0;
  font-size: 14px;
}

/* --- GRID LAYOUT --- */
.footer-grid {
  display: grid;
  /* Columns: Large Logo Area | Links | Support | Contact */
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

/* --- LOGO STYLING --- */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo {
  height: 48px; /* Adjusts logo height nicely */
  width: auto;
  display: block;
  object-fit: contain;

  /* OPTIONAL: If your logo is black and disappears on the dark bg, 
     uncomment the next line to make it white: */
  /* filter: brightness(0) invert(1); */
}

/* --- COLUMN HEADERS & TEXT --- */
.footer-col h4 {
  color: white;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  line-height: 1.6;
  margin-top: 0;
  max-width: 300px;
}

/* --- LISTS & LINKS --- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col a {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.2s ease;
}

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

/* --- CONTACT ICONS --- */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

/* Icons specifically within footer */
.contact-list i {
  font-size: 18px;
  margin-top: 2px;
}

/* --- BOTTOM BAR --- */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
}

.partner-text strong {
  color: white;
  letter-spacing: 0.5px;
}

.text-highlight {
  color: #ffffff; /* Keeps partner name white */
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  /* Tablet: 2 Columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Stack bottom bar text */
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: 30px;
  }
}

@media (max-width: 576px) {
  /* Mobile: 1 Column */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 30px;
  }
}
