/* ============================================================
   FOOTER.CSS
   ============================================================ */

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(255,255,255,0.18);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--footer-text);
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none !important;
}

.social-link:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-brand p {
  color: var(--footer-text);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}

.footer-col h4 {
  color: var(--footer-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--footer-text);
  transition: color 0.15s;
  text-decoration: none !important;
}

.footer-links a:hover { color: var(--accent-blue); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--footer-text);
  font-size: 0.8rem;
  line-height: 1;
}

.footer-bottom a {
  color: var(--accent-blue);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
