/* ===== Footer - Exact Match ===== */
.footer {
  background: linear-gradient(135deg, #5ac1ff 0%, #3aadf0 100%);
  color: var(--white);
}
.footer-top {
  padding: 40px 0 30px;
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.footer-col a {
  color: var(--white);
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s;
  font-family: 'Roboto', sans-serif;
  display: block;
  margin-bottom: 4px;
}
.footer-col a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  height: 100px;
}
.footer-partners {
  text-align: right;
}
.footer-partners h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}
.partner-logos {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}
.partner-logos img {
  height: 36px;
  object-fit: contain;
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
.social-links {
  display: flex;
  gap: 8px;
}
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  font-size: 0.85rem;
}
.social-link:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.footer-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-app h5 {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
.app-buttons {
  display: flex;
  gap: 10px;
}
.app-buttons img {
  height: 36px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 20px;
  transition: background 0.2s;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
}
.footer-phone:hover {
  background: rgba(255,255,255,0.1);
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Roboto', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-partners { text-align: center; }
  .partner-logos { justify-content: center; }
  .footer-bottom-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-social { align-items: center; }
  .footer-app { align-items: center; }
  .footer-contact { align-items: center; }
}
