/* ==========================================
   FOOTER - CLEAN MODERN DESIGN
   Navy Blue with minimal styling
   ========================================== */

.footer_section {
  background: linear-gradient(135deg,
    rgba(30, 58, 138, 0.95) 0%,
    rgba(37, 99, 235, 0.95) 100%) !important;
  padding: 20px 0 !important;
  margin-top: 0 !important;
  width: 100% !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer_section .container {
  padding: 0 20px !important;
  margin: 0 auto !important;
  max-width: 1400px !important;
}

.footer_section .row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.footer_section p {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 !important;
  font-weight: 400 !important;
  font-family: 'Poppins', 'Nunito', sans-serif !important;
}

.footer_section .footer-links {
  display: flex !important;
  gap: 15px !important;
  align-items: center !important;
}

.footer_section a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-family: 'Poppins', 'Nunito', sans-serif !important;
}

.footer_section a:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer_section {
    padding: 20px 0 !important;
  }

  .footer_section .row {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }

  .footer_section .footer-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .footer_section p {
    font-size: 12px !important;
  }

  .footer_section a {
    font-size: 12px !important;
    padding: 6px 14px !important;
  }
}
