.enhanced-footer { 
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); 
    color: var(--text-primary); 
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem); 
    border-top: 1px solid var(--border-light); 
    position: relative; 
    overflow: hidden;
  }
  
  .enhanced-footer::before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, rgba(210,105,30,0.05), transparent 60%); 
    pointer-events: none;
  }
  
  .footer-logo-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
  }
  
  .footer-company-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
  }
  
  .footer-grid { 
    display: grid; 
    gap: clamp(2rem, 4vw, 3rem); 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    align-items: start; 
    position: relative;
  }
  
  @media (min-width: 860px) {
    .footer-grid { 
      grid-template-columns: minmax(250px, 1fr) repeat(2, minmax(150px, 200px)); 
    }
  }
  
  .footer-brand { 
    max-width: 350px;
  }
  
  .footer-logo { 
    font-size: clamp(1.4rem, 2vw, 1.8rem); 
    letter-spacing: 0.05em; 
    font-weight: 700; 
    margin-bottom: 0.75rem; 
    color: var(--text-primary);
  }
  
  .footer-suffix { 
    color: var(--primary-orange);
  }
  
  .footer-tagline { 
    font-size: 0.9rem; 
    line-height: 1.6; 
    margin-bottom: 1.5rem; 
    color: var(--text-secondary);
  }
  
  .footer-col-title { 
    font-size: 0.8rem; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    font-weight: 600; 
    margin-bottom: 1rem; 
    color: var(--text-primary);
  }
  
  .footer-list { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: grid; 
    gap: 0.75rem; 
    font-size: 0.85rem;
  }
  
  .footer-list a { 
    color: var(--text-secondary); 
    text-decoration: none; 
    position: relative; 
    transition: color 0.3s ease;
  }
  
  .footer-list a::after { 
    content: ""; 
    position: absolute; 
    left: 0; 
    bottom: -2px; 
    width: 0; 
    height: 1px; 
    background: var(--primary-orange); 
    transition: width 0.3s ease;
  }
  
  .footer-list a:hover { 
    color: var(--primary-orange);
  }
  
  .footer-list a:hover::after { 
    width: 100%;
  }
  
  .footer-list li { 
    color: var(--text-secondary);
  }
  
  .footer-list li strong {
    color: var(--text-primary);
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 540px) {
    .footer-grid { 
      gap: 2rem 1.5rem; 
      grid-template-columns: 1fr;
    }
    
    .footer-brand { 
      max-width: 100%; 
      text-align: center;
    }
    
    .footer-col-title { 
      text-align: center;
    }
    
    .footer-list { 
      text-align: center;
    }
  }