:root {
    --bg-dark: #020202;
    --text-light: #f2f2f2;
    --primary-grad-start: #FF0DF7;
    --primary-grad-end: #1B2DFB;
    --secondary: #5182EF;
  }
  

/* === Footer SECTION === */
.site-footer {
  background-color: #161616;
  color: #f2f2f2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0px auto;
}

.footer-section {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 15px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f2f2f2;
  padding-bottom: 5px;
  border-bottom: 2px solid #f2f2f2;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer-section ul li i {
  margin-right: 10px;
  min-width: 20px;
  align-items: start;
}

.footer-section ul li a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.map-section iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #f2f2f2;
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin: 20px 0;
  }

  .footer-section ul li {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
/* === Footer Section ends === */