/* Footer Styles */
.main-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  margin-top: auto;
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 0.95rem;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d29b20;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #d29b20;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background-color: #d29b20;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #d29b20;
  padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #b3b3b3;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #d29b20;
  font-size: 1rem;
  margin-top: 3px;
  min-width: 18px;
}

.footer-contact span {
  line-height: 1.6;
}

/* Footer Map */
.footer-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
  display: block;
  width: 100%;
  border-radius: 8px;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease;
}

.footer-map:hover iframe {
  filter: grayscale(0%) brightness(1);
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  background-color: #0d0d0d;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #b3b3b3;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-bottom-links li {
  display: inline-block;
}

.footer-bottom-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #d29b20;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 20px;
  }

  .footer-bottom-links {
    margin-top: 15px;
    justify-content: center;
  }

  .footer-bottom p {
    margin-bottom: 10px;
  }

  .footer-map iframe {
    height: 200px;
  }
}
