/* ===== Footer ===== */
.footer {
  background: linear-gradient(to right, #F78E1E 0%, #FFBE00 100%);
  padding: 60px 20px;
}
.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 552px;
}
.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo-wrap {
  width: 300px;
  height: 90px;
  flex-shrink: 0;
}
.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background .2s;
}
.social-btn:hover { background: #f0f0f0; }
.footer-address p {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 241px;
}
.footer-link-btn {
  background: transparent;
  border-radius: 4px;
  border: none;
  width: 100%;
  padding: 10px 30px;
  min-height: 48px;
  line-height: 1.4;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
  border: 1px solid white;
}
.footer-link-btn:hover { background: white; color: #f78e1e; }
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
  font-size: 1.25rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }

@media (max-width: 768px) {
  .footer { padding: 48px 16px; }
  .footer-inner { gap: 40px; align-items: center; }
  .footer-top { flex-direction: column; align-items: center; }
  .footer-left { gap: 24px; align-items: center; max-width: 100%; }
  .footer-logo-group { flex-direction: column; gap: 20px; align-items: center; }
  .footer-logo-wrap { width: 150px; height: 46px; }
  .footer-social { justify-content: center; }
  .footer-address { text-align: center; }
  .footer-address p { font-size: 1rem; }
  .footer-links { width: 100%; align-items: center; }
  .footer-link-btn { font-size: 1.1rem; }
  .footer-bottom { flex-direction: column; font-size: 0.9rem; align-items: center; text-align: center; }
  .footer-bottom p:last-child { text-align: center; }
}
