/* ================================================
   NEW YORK CANCER & BLOOD SPECIALISTS
   Footer Styles - Light Modern Design
   ================================================ */

/* ================================================
   FOOTER STYLES - LIGHT & MODERN
   ================================================ */
#footer-placeholder {
  background: var(--bg-light, #f8f9fa);
  color: var(--text-primary, #1a1a1a);
  margin-top: 20px;
  padding-top:30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}


.footer-main {
  /*padding: 60px 5% 40px;*/
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* Footer Column Headings */
.footer-column h4 {
  color: var(--nycbs-purple, #763d76);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--nycbs-blue, #008dd0);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: var(--text-secondary, #5a5a5a);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link:hover {
  color: var(--nycbs-blue, #008dd0);
  transform: translateX(3px);
}

.footer-link::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--nycbs-purple, #763d76);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 8px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: white;
  border: 2px solid rgba(118, 61, 118, 0.2);
  border-radius: 50%;
  color: var(--nycbs-purple, #763d76);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 18px;
}

.social-link:hover {
  background: var(--nycbs-purple, #763d76);
  border-color: var(--nycbs-purple, #763d76);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(118, 61, 118, 0.3);
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 20px;
}

.company-logo {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
}

/* Footer Tagline */
.footer-tagline {
  font-style: italic;
  color: var(--text-secondary, #5a5a5a);
  font-size: 15px;
}

/* Footer Bottom */
.footer-bottom {
  background: white;
  padding: 20px 5%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-secondary, #5a5a5a);
  font-size: 14px;
}

/* ================================================
   MOBILE RESPONSIVE FOOTER
   ================================================ */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 20px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-link::before {
    display: none;
  }

  .footer-link:hover {
    transform: none;
  }

  .social-links {
    justify-content: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-bottom {
    padding: 15px 20px;
  }

  #footer-placeholder {
    margin-top: 60px;
  }
}

/* ================================================
   ALTERNATIVE FOOTER STYLES (Choose one)
   ================================================ */

/* Option 1: Purple Gradient Footer */
.footer-purple {
  background: linear-gradient(
    135deg,
    rgba(118, 61, 118, 0.05) 0%,
    rgba(0, 141, 208, 0.05) 100%
  );
}

/* Option 2: Clean White Footer */
.footer-white {
  background: white;
  border-top: 2px solid var(--nycbs-purple, #763d76);
}

.footer-white .footer-bottom {
  background: var(--bg-light, #f8f9fa);
}

/* Option 3: Soft Blue-Grey Footer */
.footer-blue-grey {
  background: #f5f7fa;
}

.footer-blue-grey .social-link {
  background: #e8ecf1;
  border-color: #d1d9e0;
}

.footer-blue-grey .social-link:hover {
  background: var(--nycbs-blue, #008dd0);
  border-color: var(--nycbs-blue, #008dd0);
}
