/* Footer CSS */

/* ======================================
   ONLINE KHABRI – HIGH END PREMIUM FOOTER
   Brand Red: #E10000
====================================== */

.custom-footer {
  background: radial-gradient(circle at top, #ff3a3a 0%, #c40000 35%, #7a0000 100%);
  color: rgba(255,255,255,0.85);
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
}

/* Soft glow layer */
.custom-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* ---------- Brand / About ---------- */

.footer-brand img.footer-logo {
  max-width: 160px;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ---------- Headings ---------- */

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.2));
  border-radius: 10px;
}

/* ---------- Links ---------- */

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

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* ---------- Social Icons ---------- */

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: white;
  font-size: 15px;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.footer-socials a:hover {
  background: #ffffff;
  color: #E10000;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* ---------- Newsletter ---------- */

.footer-form {
  margin-top: 14px;
  background: rgba(0,0,0,0.25);
  padding: 16px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.footer-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  outline: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-form button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ffffff, #ffe6e6);
  color: #E10000;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.35s ease;
}

.footer-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ---------- Bottom Bar ---------- */

.footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ---------- Mobile Polish ---------- */

@media (max-width: 600px) {
  .custom-footer {
    padding: 60px 18px 26px;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col,
  .footer-brand {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
