/* ==========================================
   DESKTOP FOOTER (Hidden on Mobile)
   ========================================== */
footer {
  background: var(--navy);
  color: #94a3b8;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .logo .icon {
  color: #fff;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 18px;
  max-width: 230px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: background .15s;
}

.social-row a:hover {
  background: var(--blue);
  color: #fff;
}

.social-row .icon {
  width: 15px;
  height: 15px;
}

footer h4 {
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 16px;
}

footer ul li {
  margin-bottom: 11px;
}

footer ul li a {
  font-size: 13.5px;
  color: #94a3b8;
  transition: color .15s;
}

footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #64748b;
}

.footer-bottom .heart {
  color: #ef4444;
  width: 12px;
  height: 12px;
  display: inline;
  vertical-align: -1px;
}

/* TABLET LAYOUT (Adjusting grid before hiding on mobile) */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE HIDE LOGIC FOR FOOTER */
@media (max-width: 640px) {
  footer {
    display: none !important;
  }
}