/* ========================================
   FOOTER - Hexagone Innovation
   ======================================== */

.footer {
  background: #091A50 !important;
  color: #ffffff !important;
  padding: 60px 0 30px;
}

.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid,
.footer-grid-4 {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #ffffff !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover,
.footer-col a:hover {
  color: #ffffff !important;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-col p strong {
  color: #ffffff !important;
}

/* Footer Brand */
.footer-brand {
  gap: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
}

.footer-brand > p {
  max-width: 300px;
}

/* Footer Contact */
.footer-contact p {
  margin-bottom: 16px;
}

.footer-hours {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff !important;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: none;
}

.footer-social a:hover svg {
  color: #ffffff !important;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0;
}

.footer-links,
.footer-bottom .footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
.footer-bottom .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom .footer-links a:hover {
  color: #ffffff !important;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .footer-grid,
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 40px 0 24px;
  }
  
  .footer-grid,
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
