/* ═══════════════════════════════════════════
   ADMASTER — Footer
   footer.css
═══════════════════════════════════════════ */

.adm-footer {
  background: var(--adm-dark);
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}

.adm-footer-inner {
  max-width: var(--adm-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Top Section ────────────────────────── */
.adm-footer-top { padding: 64px 0 48px; }

.adm-footer-top .adm-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* ── Brand Column ───────────────────────── */
.adm-footer-logo { display: inline-block; margin-bottom: 16px; }
.adm-footer-logo-img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.adm-footer-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.adm-footer-logo-text span {
  background: var(--adm-grad-pri);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.adm-footer-about {
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  font-size: .88rem;
}

.adm-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.adm-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
}
.adm-social-link:hover {
  background: var(--adm-primary);
  border-color: var(--adm-primary);
  color: #fff;
  transform: translateY(-3px);
}
.adm-social-wa:hover { background: #25d366; border-color: #25d366; }

/* ── Other Columns ──────────────────────── */
.adm-footer-heading {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.adm-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.adm-footer-links li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color .2s, padding-right .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.adm-footer-links li a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--adm-primary);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .2s;
}
.adm-footer-links li a:hover {
  color: #fff;
}
.adm-footer-links li a:hover::before { transform: scale(1.6); }

/* Contact list */
.adm-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.adm-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.5;
}
.adm-footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--adm-primary); }
.adm-footer-contact li a { color: rgba(255,255,255,.65); }
.adm-footer-contact li a:hover { color: #fff; }

/* ── Bottom Bar ─────────────────────────── */
.adm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.adm-footer-bottom .adm-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.adm-footer-copy {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}
.adm-footer-copy a { color: rgba(255,255,255,.6); }
.adm-footer-copy a:hover { color: #fff; }
.adm-footer-legal {
  display: flex;
  gap: 20px;
}
.adm-footer-legal a {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
}
.adm-footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .adm-footer-top .adm-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .adm-footer-top .adm-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .adm-footer-top { padding: 40px 0 32px; }
  .adm-footer-bottom .adm-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
