/* ====== WEBWICKED FOOTER ====== */
.site-footer {
  background: #0c0c0e;
  color: #cfd3d6;
  font-family: 'Inter', 'Poppins', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3rem;
}

/* ====== LAYOUT ====== */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== COMPANY SECTION ====== */
.footer-section.company {
  max-width: 300px;
}

.footer-logo {
  width: 50px;
  height: auto;
  margin: auto;
  filter: brightness(0.95);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
}

.tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b0b5b8;
  margin-bottom: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  color: #66fcf1;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #45a29e;
  transform: translateY(-2px);
}

/* ====== LINKS SECTIONS ====== */
.footer-section{
  margin: auto;
  text-align: center;
}
.footer-section h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.footer-section ul li {
  margin: 0.5rem 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #cfd3d6;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-section ul li a:hover {
  color: #66fcf1;
}

/* ====== BOTTOM STRIP ====== */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  margin-top: 3rem;
  padding: 1.2rem 0;
  font-size: 0.85rem;
  color: #8b9093;
  background: #0c0c0e;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-section.company {
    grid-column: span 2;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
