/* Footer Styles */
.footer {
  position: relative;
  width: 100%;
  padding: 3rem 4rem;
  background: #1a1a1a;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  z-index: 10;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: -1;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Specific styles for LinkedIn and Facebook icons */
.social-icons a[href*="linkedin"],
.social-icons a[href*="facebook"] {
  background: white;
}

.social-icons a[href*="linkedin"] img,
.social-icons a[href*="facebook"] img {
  filter: none;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease-in-out;
}

.map {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  margin-top: 1rem;
}

/* Contact section styles are kept consistent with other pages */
.contact-section {
  border: 2px solid white;
  padding: 20px;
  border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background: gold;
  color: black;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
