/* Footer Styles */
#footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #f0f0f0;
  padding: 48px 0 24px;
  position: relative;
  
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  }
  
  .footerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    
    .footerContent {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 32px;
      
      .footerLogo {
        h3 {
          color: #f0f0f0;
          font-size: 1.5rem;
          margin-bottom: 8px;
          font-weight: 200;
          letter-spacing: 0.1em;
          background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }
        
        p {
          color: rgba(240, 240, 240, 0.8);
          font-size: 0.9rem;
          margin-bottom: 0;
          font-weight: 300;
          letter-spacing: 0.05em;
        }
      }
      
      .footerInfo {
        p {
          color: rgba(240, 240, 240, 0.8);
          margin-bottom: 8px;
          line-height: 1.6;
          font-weight: 300;
          letter-spacing: 0.02em;
          
          &:last-child {
            margin-bottom: 0;
          }
        }
      }
      
      .footerNav {
        ul {
          list-style: none;
          margin: 0;
          
          li {
            margin-bottom: 8px;
            
            a {
              color: rgba(240, 240, 240, 0.8);
              text-decoration: none;
              transition: color 0.3s ease;
              font-weight: 300;
              letter-spacing: 0.02em;
              position: relative;
              
              &::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 0;
                height: 1px;
                background: rgba(240, 240, 240, 0.6);
                transition: width 0.3s ease;
              }
              
              &:hover {
                color: #f0f0f0;
                
                &::after {
                  width: 100%;
                }
              }
            }
          }
        }
      }
    }
    
    .footerBottom {
      border-top: 1px solid rgba(240, 240, 240, 0.15);
      padding-top: 24px;
      text-align: center;
      position: relative;
      
      p {
        color: rgba(240, 240, 240, 0.6);
        font-size: 0.9rem;
        margin-bottom: 0;
        font-weight: 300;
        letter-spacing: 0.02em;
      }
    }
  }
}

/* Responsive */
@media (max-width: 768px) {
  #footer {
    .footerContainer {
      .footerContent {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
      }
    }
  }
}