.footer * {
  font-family: 'Roboto', sans-serif !important;
  box-sizing: border-box;
}

.footer {
  background: #ffffff;
  color: #2c3e50;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  border-top: 8px solid #ffffff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-toggle {
  background: var(--fb-hover-blue, #3498db);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  border-bottom: 2px solid #ffffff;
  transition: background 0.3s ease;
}

.footer-toggle:hover {
  background: var(--fb-blue, #2980b9);
}

.footer-content {
  padding: 10px 0;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}
.footer-menu,
.footer-contact,
.footer-map {
  flex: 1 1 300px;
  min-width: 250px;
}

/* Section titles */
.footer-menu h3,
.footer-contact h3,
.footer-map h3 {
  font-size: 16px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--fb-blue, #2980b9);
  color: #000000;
}

/* Menu styles */
.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-menu-list a:hover {
  color: var(--fb-blue, #2980b9);
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.contact-icon {
  font-size: 16px;
}

/* Footer Logo */
.footer-logo {
  margin-top: 20px;
  text-align: center;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
}

/* Map embed */
.footer-map iframe {
  width: 100%;
  height: 200px;
  max-width: 100%;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: auto; /* <-- cho phép kéo thả bản đồ trên mobile */
  touch-action: pan-x pan-y;
}

/* Bottom section */
.footer-bottom {
  background: var(--fb-gray, #f0f0f0);
  padding: 15px 10px;
  margin-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px;
  color: #000000;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .footer-menu,
  .footer-contact,
  .footer-map {
    width: 100%;
    max-width: 100%;
  }
.footer-menu {
    max-height: 150px !important;
}
  .contact-item {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-map iframe {
    margin: 0 auto;
  }
}
