.footer {
    background: #0b0b0b;
    color: #fff;
    padding: 60px 8%;
    font-family: sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;   /* IMPORTANT */
    align-items: flex-start;
  }
  
  .footer-logo {
    width: 150%;
  }
  
  .footer-left p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
  }
  
  /* SOCIAL ICONS */
  .social-icons {
    display: flex;
    gap: 2.5%;
    margin-left: 15%;
  }
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: #111;
    padding: 15px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    background: #ffcc00;
    color: #000;
  }
  
  /* LINKS */
  .footer-links h3 {
    margin-bottom: 15px;
  }
  
  .footer-links{
        border-top: 1px solid #222;
        padding-top: 20px;
        display: flex;
        justify-content: center;   /* CENTER horizontally */
        align-items: center;
        text-align: center;
  }
  
  .footer-links a:hover {
    color: #ffcc00;
  }
  
  /* CALL BOX */
  .footer-call p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
  }
  
  .call-box {
    display: flex;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .call-box input {
    border: none;
    padding: 10px;
    flex: 1;
    background: transparent;
    color: #fff;
  }
  
  .call-box button {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  /* BOTTOM */
  .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-bottom a {
    margin-left: 15px;
    color: #aaa;
    text-decoration: none;
  }
  .footer-bottom a.gopallink {
    margin-left: 0 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    color: white;
}
  
  .footer-bottom a:hover {
    color: #ffcc00;
  }

  .disclaimer {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    max-width: 900px;   /* long text nicely wrap */
  }

  /* ========================= */
/* 📱 TABLET (<= 992px) */
/* ========================= */

@media (max-width: 992px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* ========================= */
  /* 📱 MOBILE (<= 600px) */
  /* ========================= */
  
  @media (max-width: 600px) {
  
    .footer {
      padding: 40px 5%;
    }
  
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-left {
      align-items: center;
    }
  
    .social-icons {
      justify-content: center;
    }
  
    .call-box {
      flex-direction: column;
    }
  
    .call-box input {
      width: 100%;
      text-align: center;
    }
  
    .call-box button {
      width: 100%;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  
    .bottom-links a {
      margin: 0 8px;
    }
  }

  @media (max-width: 600px) {
    .footer-left {
      align-items: center;  /* center everything */
      text-align: center;
    }
  
    .social-icons {
      justify-content: center;
    }
  }