/* --- Compact Footer Section --- */
.footer-section {
  width: 100%;
  background: var(--color-primary);
  color: var(--font-color-light);
  padding: 40px 8%; /* reduced padding */
  box-sizing: border-box;
  font-size: 0.95rem;
}

/* Layout Wrapper */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px; /* smaller gap */
  max-width: 1200px;
  margin: 0 auto;
}

/* Company Info */
.footer-company h3 {
  font-size: 1.5rem; /* smaller heading */
  margin-bottom: 8px;
  color: var(--font-color-light);
}

.footer-company p {
  line-height: 1.4;
  opacity: 0.9;
}

/* Quick Links / Contact / Social */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-tertiary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px; /* reduced spacing */
}

.footer-links a {
  text-decoration: none;
  color: var(--font-color-light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  margin-bottom: 6px;
}

.footer-contact a {
  color: var(--font-color-light);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 10px; /* smaller gap */
}

.footer-social .social-icons a img {
  width: 22px;
  height: 22px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.footer-social .social-icons a:hover img {
  transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 25px; /* reduced spacing */
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-section {
    padding: 30px 15px;
  }

  .footer-company h3 {
    font-size: 1.3rem;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 1rem;
  }
}
