/* Redesigned Footer Styles - Neutral/Monochrome Theme */
.footer.redesigned-footer {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 12, 0.98) 60%,
    rgba(30, 32, 38, 0.98) 100%
  );
  color: #fff;
  position: relative;
  padding: 0;
  font-family: "Poppins", "Montserrat", "Roboto", "Signord", sans-serif;
  overflow: hidden;
  margin-top: 3rem;
}

.footer-glow {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #fff 0%, #a0a0a0 50%, #fff 100%);
  box-shadow: 0 0 16px 4px #fff2;
  border-radius: 0 0 12px 12px;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.2rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.footer-logo-container img {
  height: auto;
  object-fit: contain;
  max-width: 100%;
}

.footer-brand {
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.footer-logo {
  width: 120px;
  margin-bottom: 0.7rem;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px #fff5);
  opacity: 0.92;
}
.footer-tagline {
  font-size: 1.05rem;
  color: #e0e0e0;
  font-weight: 500;
  margin-bottom: 0.2rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.footer-event {
  font-size: 0.95rem;
  color: #b0b0b0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-links {
  width: 100%;
}
.footer-links nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
}
.footer-links nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 0 6px #fff2;
}
.footer-links nav ul li a:hover {
  color: #a0a0a0;
  text-shadow: 0 0 12px #fff8;
}

/* Hide quick links on desktop */
@media (min-width: 701px) {
  .footer-links {
    display: none !important;
  }
}

.footer-social-contact {
  align-items: flex-end;
  width: 100%;
}
.footer-social-icons {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 0.7rem;
}
.footer-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  transition: transform 0.2s;
}

.footer-social-link:hover {
  transform: translateY(-4px) scale(1.07);
  background: none;
  box-shadow: none;
}

.footer-social-link img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-social-link:hover img {
  opacity: 1;
}

.footer-contact-info {
  font-size: 0.98rem;
  color: #cccccc;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
.footer-phone {
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 0.2rem;
  display: inline-block;
  transition: color 0.2s;
}
.footer-phone:hover {
  color: #fff;
}
.footer-contact-info i {
  margin-right: 0.4em;
  color: #a0a0a0;
}

.footer-bottom {
  border-top: 1px solid #fff2;
  padding-top: 1.1rem;
  text-align: center;
  font-size: 0.93rem;
  color: #b0bec5;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.footer-bottom a {
  color: #a0a0a0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-heart {
  color: #fff;
  font-size: 1.1em;
  vertical-align: middle;
  text-shadow: 0 0 8px #fff8;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-col.footer-social-contact {
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer-col {
    align-items: center !important;
    text-align: center;
    width: 100%;
  }
  .footer-social-contact {
    align-items: center !important;
  }
  .footer-links {
    display: flex !important;
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .footer-links nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 1.2rem 0.2rem 0.7rem 0.2rem;
  }
  .footer-logo {
    width: 90px;
  }
  .footer-tagline {
    font-size: 0.93rem;
  }
  .footer-event {
    font-size: 0.85rem;
  }
  .footer-social-link {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
  .footer-links nav ul {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 0.8rem;
  }
  .footer-quicklink {
    font-family: "Poppins", sans-serif;
  }
}

.ras-logo {
  width: 100px;
  height: 100px;
}

.ieee-logo {
  width: 150px;
  height: 150px;
}

@media screen and (max-width: 768px) {
  .ras-logo {
    width: 50px;
    height: 50px;
  }
  .ieee-logo {
    width: 100px;
    height: 100px;
  }
}
