/* ====================================================== */
/*  FOOTER — MyBiz                                        */
/* ====================================================== */

::root{
    --font-body:    'Google Sans', sans-serif;
}
footer {
  background-color: #1a1a1a !important;
  color: #d0d0d0;
  font-family: 'DM Sans', Arial, sans-serif;
  padding: 48px 0 0;
  
}

footer .container {
  max-width: 1200px;
}

/* ── Logo ───────────────────────────────────────────── */
.footer-logo {
  width: 110px;
  display: block;
  margin-bottom: 20px;
}

/* ── Social icons ───────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  background: rgba(178, 54, 89, 0.2);
  border-color: rgba(178, 54, 89, 0.4);
  transform: translateY(-2px);
}

.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* ── Section headings ───────────────────────────────── */
footer h4 {
  font-family: 'Syne', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}

/* ── Nav links ──────────────────────────────────────── */
.footer-link {
  color: #a0a0a0 !important;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #b74b69 !important;
  text-decoration: none;
}

footer .list-unstyled li {
  margin-bottom: 10px;
}

/* ── Contact items ──────────────────────────────────── */
.contact-addresses {
  gap: 24px 48px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-item a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #b74b69;
  text-decoration: none;
}

/* ── Bottom bar ─────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  padding: 18px 0;
  text-align: center;
  font-size: 12.5px;
  color: #555;
  letter-spacing: 0.02em;
  margin-top: 16px;
}

/* ── Responsive ─────────────────────────────────────── */
.footer-shift-left  { margin-left: 0; }
.footer-shift-right { margin-right: 0; }

@media (max-width: 768px) {
  footer {
    padding-top: 36px;
  }

  .contact-addresses {
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    min-width: 100% !important;
  }

  .footer-bottom {
    font-size: 11px;
  }
}