.floating-request-container {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 999;
  }

  .floating-request-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #90127e, #d43f8d);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(144, 18, 126, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 500px;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s;
  }

  .icon-circle i {
    color: #90127e;
    font-size: 1.3rem;
  }

  .floating-request-btn:hover .icon-circle {
    transform: rotate(15deg) scale(1.1);
  }

  /* تأثير النبض */
  @keyframes pulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  .floating-request-btn {
    animation: pulse 3s ease-in-out infinite;
  }

  /* التكيف مع الشاشات الصغيرة */
  @media (max-width: 768px) {
    .floating-request-container {
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
    }
    
    .floating-request-btn {
      justify-content: center;
      width: 100%;
      max-width: 300px;
    }
  } 