      .menu-toggle-btn {
        position: fixed;
        left: 8px;
        bottom: 90px;
        background: linear-gradient(to bottom, #d4b700 0%, #967600 80%);
        color: #ffffff;
        padding: 18px 12px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        border: 2px solid #ffcd17;
        z-index: 10000;
        transition: all 0.3s ease;
      }

      .menu-toggle-btn:hover {
        background: #000000;
      }

      .menu-social {
        position: fixed;
        left: -320px;
        bottom: 87px;
        width: 294px;
        background: linear-gradient(to bottom, #d4b700 0%, #967600 80%);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 9999;
        transition: left 0.4s ease;
        padding: 6px;
        border-radius: 0 20px 20px 0;
        overflow-y: auto;
        z-index: 99999;
        border-right: 2px solid #ffcd17;
      }

      .menu-social.menu-open {
        left: 0;
        text-align: center;
      }

      /* ===== Header Sidebar ===== */
      .menu-social h3 {
        color: #ffffff !important;
        font-size: 20px;
        margin-bottom: 4px;
      }

      .menu-social p {
        color: #bbb;
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center !important;
      }

      /* ===== Menu List ===== */
      .menu-social ul {
        list-style: none;
      }

      .menu-social ul li {
        margin-bottom: 14px;
      }

      .menu-social ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        padding: 10px 14px;
        background: rgb(0 0 0);
        border: 1px solid #ffcd17;
        border-radius: 14px;
        transition: all 0.3s ease;
      }

      .menu-social ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
      }

      .text-info {
        flex: 1;
        margin-left: 10px;
      }

      .text-info span {
        color: #ffffff;
        font-weight: 500;
        font-size: 14px;
        display: block;
      }

      .text-info small {
        color: #ffffff;
        font-size: 12px;
      }

      /* Gambar ikon */
      .menu-social ul li img {
        width: 50px;
        height: 50px;
        border-radius: 10px;
      }

      /* ===== Footer Close Button ===== */
      .menu-close-btn {
        display: block;
        position: unset !important;
        margin: 10px 52px 10px 100px;
        padding: 8px 16px;
        border: 2px solid #ffcd17;
        border-radius: 20px;
        font-size: 12px;
        color: #ffffff !important;
        background: transparent;
        cursor: pointer;
        transition: background 0.3s;
      }

      @media (max-width: 400px) {
        .menu-toggle-btn {
          position: fixed;
          left: 1px;
          bottom: 87px;
          background: linear-gradient(to bottom, #68289a 0%, #ffcd17 80%);
          color: #fff;
          padding: 3px 7px;
          border-radius: 30px;
          cursor: pointer;
          font-size: 16px;
          text-transform: uppercase;
          border: 2px solid #ffcd17;
          z-index: 10000;
          transition: all 0.3s ease;
        }
      }

      .menu-close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
      }