/* Bootstrap style replicate */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #6c757d;
  margin: 0;
}

/* Footer */
.footer {
  background: #212529;
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem 1rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: auto;
}

/* Logo */
.footer-logo {
  width: 130px;
  height: auto;
}

/* Paragraphs */
.footer p {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #c5c3c3;
}

/* Headings */
.footer h5 {
  color: #f8f9fa;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 0.25rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-right: 0.5rem;
  transition: all 0.3s;
}
.social-icons a:hover {
  color: #fff;
  border-color: #fff;
}
.footer-address p i {
  margin-right: 0.5rem;
  color: #6c757d;
  /* font-weight: 300; */

}
/* Quick Links */
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  color: #c5c3c3;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links a::before {
  content: "›"; 
  margin-right: 8px; 
  font-size: 18px; 
  color:#6c757d;
 }

/* ✅ Newsletter (your version) */
.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
}
.footer-newsletter form {
  display: flex;
  border: 1px solid #555;
  border-radius: 8px;
  overflow: hidden;
}
.footer-newsletter input {
  padding: 12px;
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
  color: #ccc;
}
.footer-newsletter input::placeholder {
  color: #888;
}
.footer-newsletter button {
  background: #c62860;
  border: none;
  padding: 0 20px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.footer-newsletter button:hover {
  background: #ff2e7e;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom a {
  color: #0d6efd;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom .highlight {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
