.footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  color: #333333;
  padding: 40px 20px;
  margin-top: 100px;
  border-top: 2px solid rgba(44, 152, 240, 0.2);
}

.footer__content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer__section {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  min-width: 200px;
}

.footer__section h3 {
  color: #2c98f0;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.footer__section p {
  color: #666666;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 300;
}

.footer__section ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 25px;
  margin: 0;
  flex-wrap: wrap;
}

.footer__section ul li {
  margin: 0;
}

.footer__section ul li a {
  color: #666666;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  font-weight: 400;
  position: relative;
}

.footer__section ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2c98f0;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__section ul li a:hover::after {
  width: 100%;
}

.footer__section ul li a:hover {
  color: #2c98f0;
}

.footer__social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 152, 240, 0.1);
  color: #2c98f0;
  border-radius: 50%;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(44, 152, 240, 0.3);
}

.footer__social a:hover {
  background-color: #2c98f0;
  color: #ffffff;
  transform: translateY(-4px);
  border-color: #2c98f0;
  box-shadow: 0 8px 20px rgba(44, 152, 240, 0.3);
}

.footer__social a i {
  font-size: 1.1rem;
}

.footer__divider {
  display: none;
}

.footer__bottom {
  max-width: 1400px;
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(44, 152, 240, 0.15);
}

.footer__bottom p {
  color: #999999;
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer__bottom p i {
  color: #e84855;
  margin: 0 4px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 35px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(44, 152, 240, 0.2);
  }

  .footer__content {
    flex-direction: column;
    gap: 30px;
  }

  .footer__section {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__section h3 {
    font-size: 1rem;
  }

  .footer__section p {
    font-size: 0.85rem;
  }

  .footer__section ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer__section ul li a {
    font-size: 0.85rem;
  }

  .footer__social {
    gap: 12px;
  }

  .footer__social a {
    width: 36px;
    height: 36px;
  }

  .footer__social a i {
    font-size: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
  }

  .footer__bottom p {
    font-size: 0.8rem;
  }
}
