/* Footer Section */
.footer-section {
  background-color: #1A1F36; /* deep navy */
  color: #FFD700;            /* gold text */
  padding: 40px 20px;
  font-family: 'Open Sans Condensed', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-contact,
.footer-links,
.footer-social {
  flex: 1 1 200px; /* grow/shrink, min width */
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #e6c200;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #e6c200; 
}

.footer-bottom {
  text-align: center;
  font-size: clamp(12px, 1.2vw, 14px);
  border-top: 1px solid #333; /* subtle divider */
  padding-top: 15px;
}