.footer {
  background: linear-gradient(135deg, var(--blue-main) 0%, #1e40af 100%);
  color: #cfd6e4;
  padding: 20px;
}

#home .footer {
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  color: #cfd6e4
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #cfd6e4;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-section a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 40px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 15px;
  color: #cfd6e4;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  color: #ffffff;
}

.footer-social a:hover {
  background: var(--blue-accent);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links a {
  color: #cfd6e4;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
}

@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px 20px;
    margin-top: 60px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-section h3 {
    font-size: 15px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-links {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer .container {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer {
    padding: 30px 15px 15px;
    margin-top: 40px;
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-section a,
  .footer-section p {
    font-size: 13px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Social Media Links */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--blue-light);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}
