  /* تنسيق عام */
  .whatsapp-center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  .whatsapp-center-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  /* تأثيرات الأيقونة */
  .whatsapp-icon-circle {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
  }
  
  /* تنسيق النصوص */
  .whatsapp-title {
    color: #075E54;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .whatsapp-description {
    color: #555;
    margin-bottom: 5px;
  }
  
  .whatsapp-number {
    display: block;
    font-size: 1.3rem;
    color: #128C7E;
    margin: 15px 0;
    font-weight: bold;
    text-decoration: none;
  }
  
  /* زر الإجراء */
  .whatsapp-action-btn {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
    border: 2px solid #25D366;
  }
  
  .whatsapp-action-btn:hover {
    background: white;
    color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  }
  
  /* تأثيرات إضافية */
  .whatsapp-center-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #25D366, #128C7E);
  }
  
  /* التكيف مع الشاشات الصغيرة */
  @media (max-width: 576px) {
    .whatsapp-center-box {
      padding: 30px 20px;
    }
    
    .whatsapp-icon-circle {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }
    
    .whatsapp-title {
      font-size: 1.5rem;
    }
  }