/* ==============================
   Footer Styles (Optimized)
   ============================== */

.site-footer {
  background: #fff;
  color: #222;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
  padding: 40px 5%;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
}

/* --- Footer Links Layout --- */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 2.8fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  align-items: start;
}

.footer-links h4 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #003366;
}

/* --- Shared Link Styles --- */
.footer-col ul,
.footer-companies ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li,
.footer-companies ul li {
  margin-bottom: 6px;
}

.footer-col ul li a,
.footer-companies ul li a {
  text-decoration: none;
  color: #555;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.3s;
}

.footer-col ul li a:hover,
.footer-companies ul li a:hover {
  color: #1abc9c;
}

/* --- Our Companies Section --- */
.footer-companies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-view-more {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  background: #0077b6;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.footer-view-more:hover {
  background: #023e8a;
}

/* --- Address --- */
.footer-col p {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 10px;
}

.footer-col p a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col p a:hover {
  color: #1abc9c;
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #555;
  margin-top: 20px;
  text-align: center;
}

.footer-bottom .divider {
  color: #aaa;
  font-weight: bold;
}

.footer-bottom a {
  color: #1abc9c;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  color: #16a085;
}

/* ==============================
   Responsive Design
   ============================== */
@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-companies {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 25px;
  }
  .footer-view-more {
    margin: 10px auto 0;
  }
}
