.footer {
  background: #e0e0e0;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 4px solid #5d4037;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

.footer-columns {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column {
  padding: 2rem;
  transition: transform 0.2s ease;
  opacity: 0;  /* Start hidden for GSAP */
  transform: translateY(20px);  /* Start position for animation */
}

.footer-column:hover {
  transform: translateY(-2px);
}

.footer-column h3 {
  color: #5d4037;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #8d6e63;
}

.footer-column p {
  color: #6d4c41;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.6;
}

.footer-icon {
  fill: #8d6e63;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-column:hover .footer-icon {
  transform: scale(1.2);
}


  .footer-bottom {
    width: 90%;
    margin: 0 auto;
    padding: 0.5rem;
    text-align: center;
    background: #e0e0e0;
    justify-content: center;
    border-radius: 10px;
    box-shadow: inset 2px 2px 4px #bebebe,
                inset -2px -2px 4px #ffffff;
   opacity: 0;  /* Start hidden for GSAP */
  transform: translateY(20px);  /* Start position for animation */}


.footer-column:last-child p:last-child {
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 4px;
}

.footer-column:last-child p:last-child:hover {
  background: #f5f5f5;
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-column {
    padding: 1.5rem;
  }
}