/* ─────────────────────────────────────────────
   FOOTER
   footer.css
───────────────────────────────────────────── */
body .custom-footer,
body .custom-footer * { box-sizing: border-box; }

body .custom-footer {
  background: #0b1220;
  color: #fff;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

body .custom-footer .footer-widgets {
  background: #0b1220;
  padding: 90px 0 60px;
}

body .custom-footer .row { align-items: flex-start; }
body .custom-footer .footer-brand { padding-right: 30px; }

body .custom-footer .footer-logo { margin-bottom: 24px; }
body .custom-footer .footer-logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

body .custom-footer .footer-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 28px;
  position: relative;
  text-transform: capitalize;
}
body .custom-footer .footer-title::after {
  content: "";
  width: 45px; height: 3px;
  background: var(--c-primary);
  position: absolute;
  left: 0; bottom: -10px;
  border-radius: 50px;
}

body .custom-footer .footer-description {
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
  max-width: 340px;
}

body .custom-footer .footer-menu,
body .custom-footer .footer-menu ul {
  list-style: none;
  margin: 0; padding: 0;
  display: block;
}

body .custom-footer .footer-menu li { margin: 0 0 14px; padding: 0; display: block; }
body .custom-footer .footer-menu li:last-child { margin-bottom: 0; }
body .custom-footer .footer-menu li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  display: inline-flex;
  align-items: center;
  transition: color .2s ease;
}
body .custom-footer .footer-menu li a:hover { color: #fff; }

body .custom-footer .footer-subscribe-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin: 25px 0 30px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

body .custom-footer .footer-subscribe-form input {
  flex: 1;
  width: 100%;
  border: none; outline: none; box-shadow: none;
  background: transparent;
  color: #111827;
  padding: 16px 18px;
  font-size: 15px;
  min-height: 54px;
}
body .custom-footer .footer-subscribe-form input::placeholder { color: #6b7280; opacity: 1; }

body .custom-footer .footer-subscribe-form button {
  border: none; outline: none;
  background: var(--c-primary);
  color: #fff;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  min-height: 54px;
  transition: background .2s ease;
}
body .custom-footer .footer-subscribe-form button:hover { background: var(--c-primary-dark); }

body .custom-footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
body .custom-footer .footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .2s ease, transform .2s ease;
}
body .custom-footer .footer-social a:hover { background: var(--c-primary); transform: translateY(-4px); }

body .custom-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  background: #0b1220;
}
body .custom-footer .footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
body .custom-footer .footer-bottom p { margin: 0; color: #94a3b8; font-size: 14px; line-height: 1.7; }

section.footer-widgets .container { border-bottom: none !important; padding-bottom: 0 !important; }
.site-footer { background: #0b1220 !important; }