/* ==========================
   Footer Common CSS
   ========================== */
footer {
  background: #2c3e50;
  color: white;
  width: 100%;
  padding: 40px 20px 20px;
  margin-top: 60px;
  box-sizing: border-box;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 40px;
}

.footer-links h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #fff;
}

/* Inline Quick Links */
.quick-links-inline {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-wrap: wrap; /* multiple lines */
  gap: 12px 25px;  /* row-gap & column-gap */
}

.quick-links-inline li {
  display: inline-block;
}

.quick-links-inline li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.quick-links-inline li a:hover {
  color: #1abc9c;
}

/* Contact Info */
.footer-contact p {
  margin: 5px 0;
}

/* Social Links */
.footer-social h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-social a {
  color: white;
  font-size: 1.6rem;   /* bigger icons */
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  color: #1abc9c;      /* hover green */
  transform: scale(1.2); /* zoom effect */
}

/* Bottom Text */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
}
