/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #a0a0a0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand {
  color: #fff;
  margin-bottom: 1rem;
}
.brand-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #888;
}
.socials {
  display: flex;
  gap: 0.7rem;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #333;
  color: #888;
  transition: all 0.2s;
}
.socials a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
  stroke: none;
}
.socials a:hover {
  color: #fff;
  border-color: #fff;
}
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.83rem;
}
.footer-col ul li a {
  color: #888;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #555;
}
.footer-bottom a {
  color: #555;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ===== FOOTER WAVE ===== */
.footer-wave-wrap {
  background: #fff;
  line-height: 0;
}
.footer-wave-wrap svg {
  display: block;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
/* ===== FOOTER SECURITY BADGES ===== */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
  align-items: center;
}
.footer-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-badge-link:hover {
  opacity: 1;
}
.footer-badge-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .footer-badges {
    justify-content: flex-start;
  }
}
