/* ------- Footer ------- */
/* Footer Styles */
.footer {
  background-color: #0F172A;      /* deep navy / charcoal */
  color: #CBD5E1;                /* soft gray text */
  padding-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px 30px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35); /* subtle divider */
}

/* ===== FOOTER LOGO (TEXT, MATCHING NAVBAR) ===== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-main {
  display: flex;
  align-items: center;
  line-height: 1;
}

.footer-logo-a,
.footer-logo-e,
.footer-logo-amp {
  font-weight: 900;
  font-size: 28px;
  color: #B9121B;                /* your brand red */
  letter-spacing: 1.2px;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.footer-logo-sub {
  font-size: 13px;
  font-weight: 600;
  color: #E5E7EB;                /* light grey tagline */
  letter-spacing: 0.4px;
  white-space: nowrap;
  position: relative;
  top: -1px;
}

/* ===== NAV / CONTACT BLOCKS ===== */
.footer-nav h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #FF5252;                /* accent red */
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #CBD5E1;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #FF5252;
}

.footer-contact p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-contact i {
  margin-right: 8px;
  color: #FF5252;
}
.footer-contact a {
  color: #CBD5E1;          /* same as footer text */
  text-decoration: none;  /* remove underline */
}

.footer-contact a:hover,
.footer-contact a:visited,
.footer-contact a:active {
  color: #CBD5E1;
}

/* Bottom copyright bar */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background-color: #020617;     /* darker strip */
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #9CA3AF;                /* muted grey */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-nav,
  .footer-contact {
    margin-bottom: 20px;
  }

  .footer-logo-sub {
    display: block;
  }
}
