
.o2b-footer {
  height: auto;
  padding: 20px 0 20px;
  background: radial-gradient(circle at top, #111827, #0b1220);
  color: #cbd5e1;
  font-family: 'Inter', sans-serif !important;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-top: auto;
}

.o2b-footer > .container,
.o2b-footer > .container {
  margin-top: auto;
}

/* TOP */
.footer-logo {
  width: 160px;
  margin-bottom: 20px;
  margin-left: 20%;
}

.footer-desc {
  font-size: 16px;
  line-height: 24px;
  width: 350px;
  margin-bottom: 20px;
  color: #99A1AF;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  margin-right: 10px;
  font-size: 15px;
}

.footer-social a:hover {
  background: #2563eb;
  text-decoration: none;
}

/* LINKS */
.footer-links h6 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #94a3b8;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

/* DIVIDER */
.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 20px 0;
}

/* NEWSLETTER */
.footer-newsletter h6 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-newsletter p {
  font-size: 14px;
  color: #94a3b8;
}

.newsletter-form .form-control {
  background: rgba(255,255,255,0.06);
  border: none;
  color: #fff;
  height: 48px;
  border-radius: 10px !important;
}

.newsletter-form .btn {
  background: linear-gradient(#0066FF, #4F46E5);
  border: none;
  padding: 0 24px;
  margin-left: 12px;
  border-radius: 10px !important;
}
.newsletter-form .form-control:focus {
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}


/* BOTTOM */
.footer-bottom p {
  font-size: 13.5px;
  color: #94a3b8;
}

.footer-bottom a {
  font-size: 13.5px;
  color: #94a3b8;
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 10px;
  }
}


/* ===== NEWSLETTER TOAST ===== */
#newsletterToast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;

  min-width: 280px;
  max-width: 360px;

  padding: 16px 18px;
  border-radius: 12px;

  font-family: "Poppins", "Inter", sans-serif;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

  display: none;
  animation: toastSlideIn 0.35s ease forwards;
}

#newsletterToast #toastTitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

#newsletterToast #toastBody {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

/* Success */
#newsletterToast.toast-success {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
}

/* Error */
#newsletterToast.toast-error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile */
@media (max-width: 576px) {
  #newsletterToast {
    left: 16px;
    right: 16px;
    max-width: unset;
  }
}

