/* footer.css */
:root {
  --primary: #DEB130;
  --primary-hover: rgba(199, 154, 37, 0.7);
  --text: #0d141c;
  --bg: #f8fafc;
  --glass: rgba(166, 166, 166, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background: #111 !important;
  padding: 20px 10px !important;
  color: #ccc !important;
  margin-top: 40px !important;
  width: 100% !important;
  font-family: 'Inter', 'Noto Sans', sans-serif !important;
}

.footer-grid {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;
  max-width: 1200px !important;
  margin: 0 auto 15px !important;
  padding: 0 20px !important;
}

.footer-card {
  flex: 1 !important;
  min-width: 200px !important;
  text-align: left !important;
}

.footer-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #DEB130 !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.footer-title svg {
  width: 16px !important;
  height: 16px !important;
  stroke: #DEB130 !important;
  flex-shrink: 0 !important;
}

.footer-content {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #aaa !important;
  font-weight: 400 !important;
}

.social-icons {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  margin-top: 8px !important;
}

.social-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #DEB130 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.social-icon img {
  width: 16px !important;
  height: 16px !important;
  filter: brightness(0) invert(1) !important;
}

.social-icon:hover {
  transform: scale(1.1) !important;
  background: rgba(222, 177, 48, 0.85) !important;
}

.footer-bottom {
  text-align: center !important;
  font-size: 12px !important;
  color: #777 !important;
  margin-top: 15px !important;
  padding-top: 15px !important;
  border-top: 1px solid #333 !important;
  width: 100% !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-grid {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
  }
  
  .footer-card {
    min-width: 250px !important;
    text-align: center !important;
  }
  
  .footer-title {
    justify-content: center !important;
  }
  
  .social-icons {
    justify-content: center !important;
  }
}