/* Modern Footer Styles */
/* =======================================
   Modern Footer
   ======================================= */
.footer {
  background-color: #0c2b14; /* Deep, solid PSU green */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
  min-height: auto;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 40px;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.footer-logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.footer-brand-text h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-brand-text p {
  margin: 0;
  font-size: 14px;
  color: #cccccc;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a {
  color: #dddddd;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  text-decoration: none;
  color: #ffffff;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff9933;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  font-size: 13px;
  color: #999999;
  width: 100%;
  max-width: 1100px;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Footer responsive tweaks */
@media (max-width: 768px) {
  .footer { padding: 50px 20px 25px; }
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-brand-text h3 { font-size: 18px; }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer { padding: 40px 15px 20px; }
  .footer-logo { width: 55px; height: 55px; }
  .footer-brand-text h3 { font-size: 16px; }
  .footer-brand-text p { font-size: 12.5px; }
  .footer-links { font-size: 13px; gap: 12px; flex-direction: column; }
  .footer-bottom { font-size: 11.5px; padding-top: 15px; }
}
