
/* =========================
   INDZU HEADER + FOOTER
   ========================= */

:root {
  --indzu-primary: #6f3df4;
  --indzu-primary-dark: #5528d6;
  --indzu-text: #ffffff;
  --indzu-text-dark: #0f172a;
  --indzu-muted: rgba(255, 255, 255, 0.78);
  --indzu-border: rgba(255, 255, 255, 0.12);
  --indzu-surface: rgba(255, 255, 255, 0.08);
  --indzu-footer-bg-1: #0b2348;
  --indzu-footer-bg-2: #0f5d63;
  --indzu-footer-bg-3: #0f6a3e;
  --indzu-header-bg: rgba(255, 255, 255, 0.92);
  --indzu-header-border: rgba(15, 23, 42, 0.08);
  --indzu-radius: 18px;
  --indzu-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --indzu-shell: 1240px;
}

/* ===== FOOTER ===== */

.indzu-site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 28px;
  color: var(--indzu-text);
  background:
    radial-gradient(circle at top left, rgba(111, 61, 244, 0.18), transparent 32%),
    linear-gradient(90deg, var(--indzu-footer-bg-1) 0%, var(--indzu-footer-bg-2) 55%, var(--indzu-footer-bg-3) 100%);
}

.indzu-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.18;
}

.indzu-site-footer .indzu-shell {
  position: relative;
  z-index: 2;
}

.indzu-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--indzu-border);
}

.indzu-footer-logo img {
  display: block;
  max-width: 150px;
  height: auto;
}

.indzu-footer-text {
  margin: 18px 0 24px;
  max-width: 420px;
  color: var(--indzu-muted);
  font-size: 16px;
  line-height: 1.8;
}

.indzu-footer-col h4 {
  margin: 0 0 18px;
  font-family: Archivo, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.indzu-footer-col ul,
.indzu-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.indzu-footer-col li,
.indzu-contact-list li {
  margin-bottom: 14px;
  color: var(--indzu-muted);
  font-size: 16px;
  line-height: 1.7;
}

.indzu-footer-col a,
.indzu-contact-list a {
  color: var(--indzu-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.indzu-footer-col a:hover,
.indzu-contact-list a:hover {
  color: #fff;
}

.indzu-contact-list i {
  width: 18px;
  margin-right: 10px;
  color: #fff;
}

.indzu-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.indzu-footer-socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}

.indzu-footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.16);
}

.indzu-footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.indzu-footer-bottom p {
  margin: 0;
  color: var(--indzu-muted);
  font-size: 15px;
}

.indzu-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.indzu-footer-bottom-links a {
  color: var(--indzu-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s ease;
}

.indzu-footer-bottom-links a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .indzu-main-nav {
    gap: 22px;
  }

  .indzu-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .indzu-desktop-only {
    display: none !important;
  }

  .indzu-menu-toggle {
    display: inline-flex;
  }

  .indzu-mobile-drawer.is-open {
    display: block;
  }

  .indzu-topbar {
    min-height: 74px;
  }

  .indzu-brand img {
    max-width: 120px;
    height: 32px;
  }

  .indzu-site-footer {
    padding-top: 56px;
  }
}

@media (max-width: 767px) {
  .indzu-shell {
    width: min(100% - 24px, var(--indzu-shell));
  }

  .indzu-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .indzu-footer-col h4 {
    font-size: 22px;
  }

  .indzu-footer-text,
  .indzu-footer-col li,
  .indzu-contact-list li {
    font-size: 15px;
    line-height: 1.7;
  }

  .indzu-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .indzu-footer-bottom-links {
    gap: 14px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .indzu-topbar {
    min-height: 68px;
  }

  .indzu-brand img {
    max-width: 108px;
    height: 30px;
  }

  .indzu-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .indzu-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }
}
