/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-card) 100%);
  color: color-mix(in srgb, var(--text-primary) 92%, transparent);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary) 50%, var(--secondary-color) 100%);
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 400px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo h3 .footer-brand-logo-inline {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary));
  border-radius: 2px;
  margin-bottom: 20px;
}

.footer-description {
  color: color-mix(in srgb, var(--text-primary) 85%, transparent);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--white) 10%, transparent);
  color: color-mix(in srgb, var(--text-primary) 85%, transparent);
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--white) 20%, transparent);
  font-size: 1rem;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow);
  border-color: transparent;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary));
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: color-mix(in srgb, var(--text-primary) 85%, transparent);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-links i {
  width: 18px;
  min-width: 18px;
  display: inline-grid;
  place-items: center;
  opacity: 0.8;
}
/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-details span {
  font-size: 0.9rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--text-primary) 85%, transparent);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: color-mix(in srgb, var(--text-primary) 75%, transparent);
  font-size: 0.85rem;
  margin: 0;
}

.bottom-links {
  display: flex;
  gap: 20px;
}

.bottom-links a {
  color: color-mix(in srgb, var(--text-primary) 75%, transparent);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links li {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modern-footer {
    padding: 30px 0 15px;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }

  .footer-grid {
    gap: 25px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}



