/* Footer styles */
.footer {
  background-color: #FFB90F;
  color: #000000;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-nav-column h3 {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-column ul li {
  margin-bottom: 0.75rem;
}

.footer-nav-column ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.2rem 0;
}

.footer-nav-column ul li a:hover {
  color: #000000;
  transform: translateX(5px);
  font-weight: bold; 
  font-style: italic; 
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* App download buttons */
.app-download {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid black;
  border-radius: 8px;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.app-btn i {
  font-size: 1.75rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.small-text {
  font-size: 0.7rem;
  opacity: 0.8;
}

.large-text {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Updated Social Links Section */
.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-links h3 {
  font-size: 1.2rem;
  color: #000000;
  margin: 0;
}

.social-icons-container {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: #000000;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border: 1px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a:hover {
  transform: translateY(-5px);
}
.social-links a .social-icon-image-footer { 
  color: #000;
  filter: brightness(0) saturate(100%);
  width: 50px;
  height: 50px;
  display: inline-flex;     
  align-items: center;       
  justify-content: center;   
  overflow: hidden;          
  text-decoration: none;
}
.social-links a img {
  width: 60% !important;          
  height: 60% !important;
  object-fit: contain;   
  margin: auto;   
 
}
.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.copyright {
  font-size: 0.9rem;
  color: #000000;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-top {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .app-download {
    flex-direction: column;
    align-items: center;
  }

  .app-btn {
    width: 200px;
    justify-content: center;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-nav-column h3 {
    margin-bottom: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .app-btn {
    width: 180px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}