:root{
  --primaryColor:#338d78;
  --middleColor:#4cac97f2;
  --helperColor:#48BDA3F2;
  --lightHelper:#DBDBDB;
  --transparentColor:#66d2cf88;
  --shadow:rgba(189, 188, 188, 0.514);
 /* --------------------------------- */
  --whatsappColor:#25D366;
  --white:#ffff;
  --blue: #1877F2;
  --green: #25D366;

  --gray:  #f8f8f8;
}
.aside-phone-number{
    
    display: none;
    color: var(--middleColor);
}
aside p{
    text-decoration: none;
    color: var(--middleColor);
}

aside a{
    text-decoration: none;
}
.btnsStyle {
    border: 1px solid var(--lightGray);
    background-color: var(--white);
    border-radius: 50%;
    padding: 1% 0px;
    text-align: center;
    align-content: center;
    cursor: pointer;
    transition: transform 0.3s linear;
}

.btnsStyle:hover {
    transform: translateY(-5px);
}

#contactBtn {
    display: inline-block;
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    left: 20px;
}

#contactContent {
    position: fixed;
    bottom: 60px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap:30px ;
    transition: display 2s;
}

.aside-link{
    display: inline-block;
    padding:0px 10px;
    text-decoration: none;
    color: var(--helperColor);
    font-size: medium;
    font-weight: bolder;
}
.contact-word{
    display: none;
}

.faceboook {
    display: inline-block;
    width: 55px;
    height: 55px;
    color: var(--blue);
    font-size: xx-large;
    font-weight: bolder;

}

.faceboook:hover {
    background-color: var(--blue);
    color: var(--white);
}

.whatsappp {
    display: inline-block;   
    width: 55px;
    height: 55px;
    color: var(--green);
    font-size: xx-large;
    font-weight: bolder;
}

.phone {
    display: inline-block;   
    width: 55px;
    height: 55px;
    font-size: xx-large;
    font-weight: bolder;
}

.whatsappp:hover {
    background-color: var(--green);
    color: var(--white);

}

.phone {
    display: none;  
    width: 55px;
    height: 55px;
    font-size: xx-large;
    font-weight: bolder;
}

.phone:hover {
    background-color: var(--gray);

    color: var(--white);

}

@media (max-width: 800px) {

    #contactBtn {
        display: none;
    }

    #contactContent{
       width: 100%;
       margin: auto;
        height: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        gap: 10px;
        position: fixed;
        bottom: 0px;
        right: 0px;
        padding: 10px 0px;
        background-color: var(--white);
        border-bottom:1px solid black ;
        box-shadow: 0px -10px 40px var(--shadow);
    }
    .phone{
        display: inline-block;
    }

    .aside-link{
        border: 1px solid var(--helperColor);
        border-radius: 25px;
    }

    .contact-word{
      display: inline;
    }

    .whatsappp {
        display: inline-block;   
        width: 30px;
        height: 30px;
        color: var(--green);
        font-size: larger;
        font-weight: bold;
    }

    .phone {
        display: inline-block;   
        width: 20px;
        height: 20px;
        color: var(--primaryColor);
        font-size: large;
        font-weight: bolder;
    }

    .btnsStyle {
    
        background-color: transparent;
       
    }
}
/* ====== Desktop ====== */
#contactBtn {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
  }
  
  #contactContent {
    position: fixed;
    bottom: 80px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 999;
  }
  
  /* ====== Tablet ====== */
  @media (max-width: 1024px) and (min-width: 801px) {
    #contactBtn {
      width: 55px;
      height: 55px;
    }
  
    #contactContent {
      gap: 15px;
    }
  
    .faceboook,
    .whatsappp,
    .phone {
      width: 50px;
      height: 50px;
      font-size: x-large;
    }
  }
  
  /* ====== Mobile ====== */
  @media (max-width: 800px) {
    #contactBtn {
      display: none; /* يختفي البوتون العائم */
    }
  
    #contactContent {
      width: 100%;
      height: fit-content;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
      padding: 12px 0;
      bottom: 0;
      left: 0;
      background: var(--white);
      border-top: 1px solid var(--lightHelper);
      box-shadow: 0px -4px 20px var(--shadow);
    }
  
    .faceboook,
    .whatsappp,
    .phone {
      width: 40px;
      height: 40px;
      font-size: 1.4rem;
    }
  
    .aside-link {
      border: 1px solid var(--helperColor);
      border-radius: 20px;
      padding: 5px 10px;
    }
  
    .contact-word {
      display: inline;
      font-size: 0.9rem;
    }
  
    /* بدل hover نستخدم active */
    .faceboook:active,
    .whatsappp:active,
    .phone:active {
      transform: scale(0.9);
      background: var(--helperColor);
      color: var(--white);
    }
  }
  
  /* ====== Small Mobile ====== */
  @media (max-width: 480px) {
    .faceboook,
    .whatsappp,
    .phone {
      width: 30px;
      height: 30px;
      font-size: 1.1rem;
    }
  
    .contact-word {
      font-size: 0.8rem;
    }
  }
  