.footer {
  position: relative;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  background-color: black;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p, 
.footer a {
  font-size: 14px;
  color: #f1f1f1;
}

.footer a:hover {
  color: #FFD700; /* Gold color highlight */
  text-decoration: none;
}

/* LISTS */
.footer ul {
  padding-left: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li i {
  color: #FFD700; /* Icon color */
}

/* TOP BAR */
.footer-four__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.5rem;
}

.footer-four__top-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-four__top-icon i {
  font-size: 18px;
  color: #FFD700;
}

.footer-four__top-text {
  margin: 0;
  font-size: 14px;
}

/* MAP */
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* FOOTER BOTTOM */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 14px;
}

.footer .text-light {
  color: #f1f1f1 !important;
}

.footer .text-light:hover {
  color: #FFD700 !important;
}

/* SOCIAL ICONS */
.footer .fa-brands {
  font-size: 16px;
  transition: 0.3s;
}

.footer .fa-brands:hover {
  color: #FFD700;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .footer .footer-four__main {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-four__main-left {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-four__main-right {
    margin-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .footer-four__top-left,
  .footer-four__top-right {
    flex-direction: column;
    text-align: center;
  }

  .footer-four__top-left {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .footer .footer-bottom {
    text-align: center;
  }
}