   /* --- FOOTER --- */
        footer { 
          background: var(--navy); 
          color: #fff; 
          padding: 50px 8% 20px; 
          border-top: 2px solid var(--orangered); 
        }
        /* .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; } */
        .footer-grid{
          display: flex;
          width: 100%;
          height: auto;
          justify-content: space-between;
        }
        .footer-bottom { 
          margin-top: 20px;
          border-top: 1px solid #fff;
          padding-top: 25px; 
          display: flex; 
          justify-content: space-between; 
          flex-wrap: wrap; 
          font-size: 0.85rem; 
        }
        .footer-box p, .footer-box li{
           margin-bottom:20px; 
           font-size: 13px;
        }
        .footer-box li i{
          color:var(--orangered); 
          margin-right:10px;
        }
        .social-links a { color: #fff; margin-right: 15px; font-size: 1rem; transition: 0.3s; }
        .social-links a:hover { color: var(--orangered); transform: scale(1.2); }


         footer{
          list-style: none;
         }

    
    
    
         @media (max-width: 992px) {
              .footer-grid{
                flex-direction: column;
        }
            .nav-links { display: none; }
            .menu-btn { display: block; }
        }