
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.4));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-brand-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-brand img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-description {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  max-width: 100%;
}

.footer-domains-box {
  margin-top: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-domains-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.footer-domains-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-domain-link {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed rgba(167, 139, 250, 0.4);
  transition: all 0.2s ease;
}

.footer-domain-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-icons a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.footer-social-icons a:hover::before {
  opacity: 1;
}

.footer-social-icons a:active {
  transform: translateY(-2px) scale(1.02);
}

.footer-social-icons svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.footer-social-icons a:hover svg {
  transform: scale(1.1);
}
.footer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.footer-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.5), rgba(20, 20, 20, 0.3));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.footer-card:hover::before {
  opacity: 1;
}

.footer-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-card-header svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

.footer-card-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

.footer-card-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.footer-card-text:last-child {
  margin-bottom: 0;
}

.footer-card-text strong {
  color: #ffffff;
  font-weight: 600;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-email svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-email:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-ceo {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.footer-links-section {
  padding: 32px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.4), rgba(20, 20, 20, 0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-links-title {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateX(4px);
}

.footer-link:hover svg {
  transform: scale(1.1) rotate(5deg);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
  font-weight: 500;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.2);
}

.footer-next {
  font-weight: 500;
}

.footer-next a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-next a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .footer-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .footer-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .footer-container {
    gap: 24px;
  }

  .footer-brand-section,
  .footer-links-section {
    padding: 20px;
    border-radius: 16px;
  }

  .footer-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-card {
    padding: 20px;
    border-radius: 16px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .footer-link {
    padding: 10px;
    font-size: 13px;
  }

  .footer-brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-description {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 24px 12px 16px;
  }

  .footer-brand-section,
  .footer-links-section,
  .footer-card {
    padding: 16px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .footer-social-icons {
    justify-content: center;
    gap: 10px;
  }

  .footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .footer-links-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-link {
    font-size: 12px;
    padding: 8px;
  }

  .footer-description {
    font-size: 12px;
    text-align: center;
  }

  .footer-tagline {
    font-size: 12px;
  }

  .footer-brand {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
