/*========= Footer =========*/

.footer {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-white);
    padding: var(--space-12) var(--space-6) var(--space-6);
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Footer Top */
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Footer Column */
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Footer Title (Company Name) */
  .footer-title {
    font-size: var(--font-2xl);
    font-weight: var(--font-bold);
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer-text {
    font-size: var(--font-base);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
  }
  
  /* Footer Heading */
  .footer-heading {
    font-size: var(--font-lg);
    font-weight: var(--font-bold);
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
  }
  
  /* Footer Links */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-base);
    transition: all var(--transition-fast);
    padding: 0.25rem 0;
  }
  
  .footer-links li a:hover {
    color: var(--color-primary);
    transform: translateX(-5px);
  }
  
  .footer-links li a i {
    transition: all var(--transition-fast);
  }
  
  .footer-links li a:hover i {
    color: var(--color-secondary);
  }
  
  /* Footer Contact */
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-base);
  }
  
  .footer-contact li i {
    color: var(--color-primary);
    flex-shrink: 0;
  }
  
  .footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .footer-contact li a:hover {
    color: var(--color-primary);
  }
  
  /* Social Links */
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
  }
  
  .social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.3);
  }
  
  .social-link i {
    width: 20px;
    height: 20px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
  }
  
  .copyright {
    font-size: var(--font-base);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }
  
  .copyright strong {
    color: var(--color-primary);
    font-weight: var(--font-bold);
  }
  
  .footer-links-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: color var(--transition-fast);
  }
  
  .footer-links-bottom a:hover {
    color: var(--color-primary);
  }
  
  .footer-links-bottom span {
    color: rgba(255, 255, 255, 0.3);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-links-bottom {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .footer-links-bottom span {
      display: none;
    }
  }
  
