/* ========================================
   ABS FOOTER - Four Column Design
   ======================================== */

.abs-footer {
  background: #0a2540;
  color: var(--white);
  padding: 60px 60px 30px;
  font-family: var(--font-body);
  position: relative;
  z-index: 2; /* Stack above fixed video background (z-index: 0) and overlay (z-index: 1) */
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.abs-footer * {
  box-sizing: border-box;
}

.abs-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* Company Column */
.abs-footer-company {
  padding-right: 20px;
}

.abs-footer-logo {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.abs-footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.abs-footer-social {
  display: flex;
  gap: 12px;
}

.abs-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.abs-footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* Column Headers */
.abs-footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
}

.abs-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.abs-footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
}

.abs-footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* Contact Column */
.abs-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.abs-footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

.abs-footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.abs-footer-contact-item a:hover {
  color: var(--white);
}

.abs-footer-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.abs-footer-hours h5 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 0;
}

.abs-footer-hours p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Footer Bottom */
.abs-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.abs-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.abs-footer-legal {
  display: flex;
  gap: 25px;
}

.abs-footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.abs-footer-legal a:hover {
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 900px) {
  .abs-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .abs-footer {
    padding: 40px 20px 20px;
  }
  .abs-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  /* Company column spans full width on mobile */
  .abs-footer-company {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .abs-footer-logo {
    display: block;
    margin: 0 auto 20px;
  }
  /* Contact column fits naturally in 2-col grid alongside Company */
  .abs-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .abs-footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .abs-footer {
    padding: 32px 16px 16px;
  }

  .abs-footer-grid {
    gap: 28px;
  }

  .abs-footer-logo {
    max-height: 60px;
  }

  .abs-footer-tagline {
    font-size: 0.85rem;
  }

  .abs-footer-column h4 {
    font-size: 0.8rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }

  .abs-footer-column a,
  .abs-footer-contact-item {
    font-size: 0.85rem;
  }

  .abs-footer-hours {
    padding: 12px;
  }

  .abs-footer-hours h5 {
    font-size: 0.75rem;
  }

  .abs-footer-hours p {
    font-size: 0.8rem;
  }

  .abs-footer-bottom {
    padding-top: 20px;
    margin-top: 28px;
    gap: 12px;
  }

  .abs-footer-copyright {
    font-size: 0.8rem;
  }

  .abs-footer-legal {
    gap: 16px;
  }

  .abs-footer-legal a {
    font-size: 0.8rem;
  }
}
