.site-footer {
    background: linear-gradient(135deg, 
    #000000 0%, 
    #0a0a0a 30%,
    #111111 70%, 
    #000000 100%);
  padding: 60px 0 30px; 
  /* margin-top: 80px;  */
  color: #ffffff;
  border-top: 3px solid #ff1493;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.site-footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  gap: 80px; 
  position: relative;
  z-index: 1;
}

.site-footer__brand-section {
  flex: 0 0 320px; 
  padding-right: 20px;
}

.site-footer__brand-logo {
  margin-bottom: 20px;
}

.site-footer__brand-text {
  font-size: 2rem; 
  font-weight: 800;
  background: linear-gradient(45deg, #ff1493, #00bfff, #ff6b6b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  letter-spacing: -0.5px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.site-footer__brand-description {
  color: #b8b8d1;
  line-height: 1.6; 
  margin-bottom: 25px; 
  font-size: 0.95rem;
  max-width: 300px; 
  font-weight: 400;
}

.site-footer__social-wrapper {
  margin-top: 20px; 
}

.site-footer__social-grid {
  display: flex;
  gap: 12px; 
  flex-wrap: wrap;
}

.site-footer__social-item {
  color: #8892b0;
  text-decoration: none;
  padding: 12px; 
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.site-footer__social-item:hover .site-footer__social-icon {
  filter: brightness(1.2);
  transform: scale(1.1);
}

.site-footer__social-item:hover {
  color: #ffffff;
  background: rgba(255, 20, 147, 0.2);
  border-color: rgba(255, 20, 147, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.site-footer__nav-sections {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 60px;
}

.site-footer__nav-column {
  flex: 1;
  min-width: 160px;
  text-align: left;
}

.site-footer__column-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}



.site-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav-item {
  margin-bottom: 12px;
}

.site-footer__nav-link,
.site-footer__nav-button {
  color: #8892b0;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0;
  display: inline-block;
  line-height: 1.5;
  position: relative;
}

.site-footer__nav-link:hover,
.site-footer__nav-button:hover {
  color: #00bfff;
  transform: translateX(5px);
}

.site-footer__bottom-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px; 
  padding-top: 25px; 
  position: relative;
  z-index: 1;
}

.site-footer__bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.site-footer__legal-links {
  display: flex;
  gap: 25px; 
  flex-wrap: wrap;
}

.site-footer__legal-link,
.site-footer__legal-button {
  color: #8892b0;
  text-decoration: none;
  font-size: 0.8rem; 
  font-weight: 400;
  transition: all 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.site-footer__legal-link:hover,
.site-footer__legal-button:hover {
  color: #ffffff;
}

.site-footer__legal-link::after,
.site-footer__legal-button::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.site-footer__legal-link:hover::after,
.site-footer__legal-button:hover::after {
  width: 100%;
}

.site-footer__partners-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.site-footer__partners-heading {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer__partners-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-footer__partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.site-footer__partner-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 20, 147, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.site-footer__partner-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.site-footer__partner-item:hover .site-footer__partner-logo {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.05);
}

.site-footer__copyright-wrapper {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__copyright-text {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .site-footer__container {
    gap: 50px; 
  }
  
  .site-footer__nav-sections {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .site-footer__container {
    flex-direction: column;
    gap: 40px;
  }
  
  .site-footer__brand-section {
    flex: none;
    text-align: center;
    max-width: none;
    padding-right: 0;
  }
  
  .site-footer__brand-description {
    max-width: none;
    text-align: center;
  }
  
  .site-footer__social-grid {
    justify-content: center;
  }
  
  .site-footer__nav-sections {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
  }
  
  .site-footer__nav-column {
    min-width: 200px;
    text-align: center;
    flex: 0 0 auto;
  }
  
  .site-footer__column-heading {
    text-align: center;
  }
  
  .site-footer__column-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .site-footer__bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .site-footer__partners-section {
    align-items: center;
  }
  
  .site-footer__partners-grid {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 25px;
    margin-top: 50px;
  }
  
  .site-footer__container {
    gap: 30px;
    padding: 0 20px;
  }
  
  .site-footer__nav-sections {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .site-footer__nav-column {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }
  
  .site-footer__bottom-container {
    padding: 0 20px;
  }
  
  .site-footer__legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-footer__brand-text {
    font-size: 1.6rem;
  }
  
  .site-footer__social-grid {
    justify-content: center;
    gap: 8px;
  }
  
  .site-footer__social-item {
    padding: 8px;
  }
  
  .site-footer__legal-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .site-footer__partners-grid {
    gap: 10px;
  }
  
  .site-footer__partner-logo {
    height: 20px;
  }
}

.site-footer__social-item:focus,
.site-footer__nav-link:focus,
.site-footer__nav-button:focus,
.site-footer__legal-link:focus,
.site-footer__legal-button:focus {
  outline: 2px solid #00bfff;
  outline-offset: 2px;
  border-radius: 4px;
}

.site-footer__logo-image {
  max-height: 80px; 
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.site-footer__logo-image:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}

.site-footer__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff1493, #00bfff, #ff6b6b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  letter-spacing: -0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-footer__logo-image {
    max-height: 45px; 
  }
}

@media (max-width: 480px) {
  .site-footer__logo-image {
    max-height: 35px; 
  }
}


@media (prefers-reduced-motion: no-preference) {
  .site-footer__social-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .site-footer__nav-link,
  .site-footer__nav-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}


/* Company Partners Section */
.site-footer__partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 0 0 20px 0;
}

.site-footer__partners-heading {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.site-footer__partners-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer__partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.site-footer__partner-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 20, 147, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.site-footer__partner-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.site-footer__partner-item:hover .site-footer__partner-logo {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.05);
}

/* Responsive adjustments for partners */
@media (max-width: 768px) {
  .site-footer__partners-grid {
    gap: 15px;
  }
  
  .site-footer__partner-logo {
    height: 25px;
  }
  
  .site-footer__partners-section {
    margin: 0 0 15px 0;
  }
}

@media (max-width: 480px) {
  .site-footer__partners-grid {
    gap: 10px;
  }
  
  .site-footer__partner-logo {
    height: 20px;
  }
  
  .site-footer__partner-item {
    padding: 6px 10px;
  }
  
  .site-footer__partners-heading {
    font-size: 0.8rem;
  }
}
