/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

/* Logo Section */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  filter: brightness(1.1);
}

.footer-description {
  color: #b8c1d9;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.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;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #0ea5e9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

/* Footer Titles */
.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, transparent);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b8c1d9;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: #0ea5e9;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #b8c1d9;
  font-size: 14px;
}

.footer-contact i {
  color: #0ea5e9;
  margin-right: 12px;
  font-size: 16px;
  min-width: 20px;
  margin-top: 2px;
}

.footer-contact a {
  color: #b8c1d9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  color: #b8c1d9;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #b8c1d9;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    padding-left: 0;
  }

  .footer-links a:hover {
    padding-left: 0;
    transform: none;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 150px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-description,
  .footer-links a,
  .footer-contact li,
  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 13px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}