:root{
  --footer-text: #0b0f17;
  --footer-muted: #526071;
  --footer-blue: #2e86ff;
}

/* Basic reset safeguard */
.footer *{
  box-sizing: border-box;
}

/* Layout wrapper (in case .container is missing) */
.footer .container{
  max-width: 1150px;
  padding: 0 22px;
  margin: 0 auto;
}

/* Main footer */
.footer{
  margin-top: 34px;
  padding: 22px 0;
  background: rgba(238, 247, 255, 0.55);
  border-top: 1px solid rgba(15, 23, 42, 0.14);
}

/* Top section */
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Brand section */
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* Logo box */
.footer .brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9bd7ff, #2e86ff);
  box-shadow: 0 10px 24px rgba(46,134,255,0.22);

  display:flex;
  align-items:center;
  justify-content:center;
}

.footer .brand-mark img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Text */
.footer-title{
  font-weight: 800;
  color: var(--footer-text);
  line-height: 1.1;
}

.footer-sub{
  color: var(--footer-muted);
  font-size: 0.95rem;
  margin-top: 2px;
}

/* Links */
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a{
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.footer-links a:hover{
  background: rgba(46,134,255,0.10);
  color: var(--footer-blue);
}

/* Bottom section */
.footer-bottom{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.14);

  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;

  font-size: 0.9rem;
  color: var(--footer-muted);
}