/* Footer */
footer {
  background: #1A1A2E;
  color: white;
  padding: 50px 20px 20px;
  width: 100%;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  margin: 0 0 20px 0;
  color: #FF9900;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 15px 0;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  opacity: 0.9;
}

.footer-links a:hover {
  color: #FF9900;
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 153, 0, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}

.social-icon:hover {
  background: #FF9900;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}