/* Footer Section Styles */
.footer-section {
  background: #212936;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Container */
.footer-container {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

/* Logo Section */
.footer-logo {
  flex-shrink: 0;
}

.footer-logo-image {
  width: 82px;
  height: auto;
}

/* Copyright Section */
.footer-copyright {
  flex: 1;
  text-align: center;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  text-align: center;
  padding-left: 70px;
}

/* Social Media Section */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 50px;
  background-color: #121826;
  margin-left: auto;
}

.social-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 16px;
  text-decoration: none;
  background: linear-gradient(90deg, #4a90e2, #7ed321);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #7ed321;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-social {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 16px;
    padding: 20px 15px;
    text-align: center;
  }

  .footer-copyright {
    order: 2;
  }

  .footer-social {
    order: 3;
    justify-content: center;
    margin-left: 0;
    width: 100%;
    max-width: 300px;
  }

  .copyright-text {
    font-size: 13px;
    padding-left: 40px;
  }

  .social-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    gap: 12px;
    padding: 16px 15px;
  }

  .footer-logo-image {
    width: 40px;
  }

  .copyright-text {
    font-size: 12px;
    padding-left: 20px;
  }

  .social-label {
    font-size: 12px;
  }

  .social-link {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 8px;
    max-width: 260px;
  }
}

@media (max-width: 320px) {
  .copyright-text {
    padding-left: 10px;
  }
}

/* Accessibility improvements */
.social-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.social-link:focus:not(:focus-visible) {
  outline: none;
}

/* Fade-in animations */
.fade-in-section-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-section-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-section-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 2s ease-in-out,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-section-scale.visible {
  opacity: 1;
  transform: scale(1);
}