/* ============================================================
   Footer — MD3 Style (matches header & hero design)
   ============================================================ */

.flightfooter {
  background: #ffffff;
  border-top: 1px solid #e4e4e7;
  margin-top: 0;
  padding: 24px 20px 16px;
  text-align: center;
  font-family: "Inter", "Roboto", sans-serif;
}

/* ---- Navigation Links ---- */
.footerlinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding-bottom: 14px;
}

.footerlinks a {
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
  display: inline-block;
}

.footerlinks a:hover {
  color: #0d9488;
}

/* ---- Copyright ---- */
.copyrighttext {
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.copyrighttext p {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.2px;
}

.copyrighttext a {
  color: #6b7280;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyrighttext a:hover {
  color: #0d9488;
}

/* ---- Mobile ---- */
@media (max-width: 576px) {
  .flightfooter {
    padding: 20px 16px 14px;
  }

  .footerlinks {
    gap: 4px 14px;
  }

  .footerlinks a {
    font-size: 12px;
  }

  .copyrighttext p {
    font-size: 11px;
  }
}
