/* ================================================
   Bitcrack Cyber Security — Footer (Light Theme v1)
   Enterprise corporate footer
   =============================================== */

.bc-footer {
  position: relative;
  margin-top: 0;
  padding: 5rem 0 2.5rem;
  background: #f5f5f5;
  color: #111111;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* Red accent line at top */
.footer-top-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(220,38,38,0.3) 50%, transparent 90%);
}

/* Grid — 5 columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ---- Brand column ---- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  text-decoration: none;
}

.footer-logo img {
  height: 50px;
  width: auto;
  transition: opacity 0.2s ease;
}

.footer-logo:hover img {
  opacity: 0.8;
}

.footer-logo-light { display: block; }
.footer-logo-dark { display: none; }

/* Light theme footer logo — no brightness filter */
.footer-logo-light {
  height: 50px;
  width: auto;
  transition: opacity 0.2s ease;
}

.footer-logo:hover .footer-logo-light {
  opacity: 0.8;
}

.footer-brand p {
  margin: 0;
  font-size: 0.88rem;
  color: #737373;
  line-height: 1.65;
  max-width: 300px;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  color: #737373;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: #111111;
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.04);
}

/* ---- Column headings ---- */
.footer-col h4 {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #111111;
}

.footer-col-spacer {
  margin-top: 2rem !important;
}

/* ---- Lists ---- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  color: #737373;
  line-height: 1.5;
}

.footer-col a {
  color: #404040;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #111111;
}

/* Incident Response highlight */
.footer-highlight {
  color: #dc2626 !important;
  font-weight: 600;
}

.footer-highlight:hover {
  color: #b91c1c !important;
}

/* External link icon */
.footer-ext {
  font-size: 0.6rem;
  margin-left: 0.3rem;
  opacity: 0.5;
}

/* ---- Contact list with icons ---- */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.footer-contact-list i {
  color: #a3a3a3;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.footer-contact-list a,
.footer-contact-list span {
  color: #404040;
  font-size: 0.85rem;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #111111;
}

/* ---- Bottom bar ---- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: #a3a3a3;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #737373;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #404040;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .bc-footer {
    padding: 4rem 0 2.25rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .bc-footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-logo img,
  .footer-logo .footer-logo-light {
    height: 42px;
  }
}
